forked from rosnovsky/sanity-plugin-autocomplete-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "sanity-plugin-autocomplete-tags",
"license": "MIT",
"description": "Tags autocomplete plugin for Sanity Studio",
"version": "1.0.1",
"author": "Art Rosnovsky <[email protected]>",
"keywords": [
"sanity",
"sanity studio",
"sanity plugin",
"react-select",
"autocomplete"
],
"main": "build/index.js",
"scripts": {
"build": "babel src -d build --copy-files",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rosnovsky/sanity-plugin-autocomplete-tags"
},
"bugs": {
"url": "https://github.com/rosnovsky/sanity-plugin-autocomplete-tags/issues"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/runtime": "^7.6.2",
"@sanity/client": "^2.0.1",
"react": "^17.0.0",
"react-select": "^3.1.0",
"webpack": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"babel-eslint": "10.1.0",
"dotenv": "8.2.0"
},
"peerDependencies": {
"@sanity/base": ">= 0.135.x",
"@sanity/client": ">= 0.135.x",
"@sanity/components": ">= 0.135.x",
"@sanity/core": ">= 0.135.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}