-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
{
"name": "sanity-plugin-autocomplete-input",
"version": "2.0.0",
"license": "MIT",
"type": "module",
"types": "./lib/index.d.ts",
"module": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/LiamMartens/sanity-plugin-autocomplete-input"
},
"bugs": {
"url": "https://github.com/LiamMartens/sanity-plugin-autocomplete-input/issues"
},
"author": {
"name": "Liam Martens",
"email": "[email protected]"
},
"devDependencies": {
"@sanity/ui": "^1.9.3",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.99",
"@types/node": "^20.9.4",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanity": "^3.0.0",
"styled-components": "^6.1.1",
"typescript": "~5.3.2"
},
"peerDependencies": {
"@sanity/ui": "^1.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"sanity": "^3.0.0",
"styled-components": "^6.0.0"
},
"dependencies": {
"just-compact": "^3.2.0",
"just-pick": "^4.2.0",
"just-safe-get": "^4.2.0",
"just-unique": "^4.2.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"build:js": "swc ./src -d ./lib",
"build:types": "tsc -p .",
"build": "run-p build:*"
}
}