-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@portabletext/solid",
"version": "1.0.6",
"description": "Render Portable Text with Solid JS",
"keywords": [
"solid"
],
"homepage": "https://github.com/portabletext/solid-portabletext#readme",
"bugs": {
"url": "https://github.com/portabletext/solid-portabletext/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/portabletext/solid-portabletext.git"
},
"license": "MIT",
"author": "nonphoto",
"sideEffects": false,
"type": "module",
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
},
"require": "./dist/dev.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": {},
"types": "./dist/index.d.ts",
"typesVersions": {},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "vite serve dev",
"format": "prettier --write --cache --ignore-unknown .",
"prepublishOnly": "pnpm build",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"typecheck": "tsc --noEmit",
"update-deps": "pnpm up -Li"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"plugins": [
"prettier-plugin-packagejson"
],
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"dependencies": {
"@portabletext/toolkit": "^2.0.15",
"@portabletext/types": "^2.0.13"
},
"devDependencies": {
"concurrently": "^8.2.2",
"esbuild": "^0.21.4",
"esbuild-plugin-solid": "^0.6.0",
"jsdom": "^22.1.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"solid-js": "^1.8.17",
"tsup": "^8.0.2",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.6.0"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}