forked from rdunk/sanity-plugin-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "sanity-plugin-table",
"version": "3.0.0",
"description": "Table schema type and input component for Sanity CMS",
"main": "lib/TableComponent.js",
"scripts": {
"build": "sanipack build",
"watch": "sanipack build --watch",
"prepublishOnly": "sanipack build && sanipack verify"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rdunk/sanity-plugin-table.git"
},
"author": "Rupert Dunk <[email protected]>",
"keywords": [
"sanity",
"sanity-plugin"
],
"license": "MIT",
"peerDependencies": {
"@sanity/icons": "^2.3.1",
"@sanity/ui": "^1.3.2",
"@sanity/uuid": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.9"
},
"devDependencies": {
"@types/react": "^18.0.3",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-sanity": "6.0.0",
"eslint-plugin-react": "7.32.2",
"prettier": "2.8.7",
"sanipack": "2.1.0"
},
"bugs": {
"url": "https://github.com/rdunk/sanity-plugin-table/issues"
},
"homepage": "https://github.com/rdunk/sanity-plugin-table#readme",
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
},
"eslintConfig": {
"parser": "sanipack/babel/eslint-parser",
"extends": [
"sanity",
"sanity/react",
"prettier",
"prettier/react"
]
}
}