-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "simple-zustand-devtools",
"author": "Aleksandra Sikora",
"version": "1.1.0",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"umd:main": "dist/simple-zustand-devtools.umd.production.js",
"module": "dist/simple-zustand-devtools.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"description": "Devtools for Zustand",
"repository": "beerose/simple-zustand-devtools",
"keywords": [
"react",
"zustand",
"devtools"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test"
},
"peerDependencies": {
"@types/react": ">=18.0.0",
"@types/react-dom": ">=18.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"zustand": ">=1.0.2"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"tsdx": "^0.5.6",
"typescript": "^3.9.10",
"zustand": "^3.5.10"
}
}