-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.76 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
{
"name": "sanity-plugin-autocomplete-tags",
"license": "MIT",
"description": "Tags autocomplete plugin for Sanity Studio",
"version": "1.0.2",
"author": "Art Rosnovsky <[email protected]> (https://rosnovsky.us)",
"homepage": "https://www.sanity.io/plugins/autocomplete-tags",
"contributors": [
"Sean Holbert (https://twitter.com/wildseansy)",
"Racheal Larimer <[email protected]> (https://github.com/rlpennell)"
],
"keywords": [
"sanity",
"sanity studio",
"sanity plugin",
"react-select",
"autocomplete"
],
"main": "build/index.js",
"scripts": {
"build": "babel src -d build --copy-files",
"dev": "babel src -d build --copy-files --watch",
"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": "^5.0.0",
"webpack": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.5",
"@babel/plugin-proposal-class-properties": "7.16.5",
"@babel/plugin-transform-runtime": "7.16.5",
"@babel/preset-env": "7.16.5",
"@babel/preset-react": "7.16.5",
"babel-eslint": "10.1.0",
"dotenv": "10.0.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/"
}
}