forked from davydog187/sanity-portable-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.39 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
{
"name": "@bitfo/sanity-plugin-portable-table",
"version": "1.0.3",
"description": "A table plugin for Sanity that supports PortableText cells",
"keywords": [
"sanity",
"table"
],
"homepage": "https://github.com/bitfo/sanity-portable-table#readme",
"bugs": {
"url": "https://github.com/bitfo/sanity-portable-table/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bitfo/sanity-portable-table.git"
},
"license": "Apache-2.0",
"author": "Dave Lucia <[email protected]>",
"exports": {
".": {
"types": "./lib/src/index.d.ts",
"source": "./src/index.ts",
"import": "./lib/index.esm.js",
"require": "./lib/index.js",
"default": "./lib/index.esm.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"source": "./src/index.ts",
"types": "./lib/src/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"src",
"lib",
"v2-incompatible.js",
"sanity.json"
],
"scripts": {
"prebuild": "npm run clean && plugin-kit verify-package --silent && pkg-utils",
"build": "pkg-utils build",
"clean": "rimraf lib",
"format": "prettier -w .",
"format:check": "prettier -c .",
"link-watch": "plugin-kit link-watch",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"typecheck": "tsc --pretty --noEmit",
"watch": "pkg-utils watch"
},
"dependencies": {
"@portabletext/toolkit": "^2.0.1",
"@sanity/icons": "^2.2.2",
"@sanity/incompatible-plugin": "^1.0.4",
"@sanity/ui": "^1.2.2",
"react": "^18.2.0",
"sanity": "^3.20.0"
},
"devDependencies": {
"@sanity/pkg-utils": "^2.2.3",
"@sanity/plugin-kit": "^3.1.4",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-sanity": "^6.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.3",
"prettier-plugin-packagejson": "^2.4.2",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^18",
"sanity": "dev-preview || 3.0.0-rc.2"
},
"engines": {
"node": ">=14"
},
"sanityPlugin": {
"verifyPackage": {
"scripts": false,
"tsconfig": false
}
}
}