-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.65 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@bphu/zustand-react",
"version": "0.1.4",
"repository": {
"type": "git",
"url": "git+https://github.com/bp-hu/zustand-react"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js",
"default": "./dist/utils.js"
}
},
"typesVersions": {
"*": {
"utils": [
"./dist/utils.d.ts"
]
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"format": "prettier --write .",
"lint": "eslint .",
"doc": "npx storybook dev"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@rsbuild/core": "^1.1.13",
"@rsbuild/plugin-react": "^1.1.0",
"@rslib/core": "^0.2.2",
"@storybook/addon-essentials": "^8.4.7",
"@types/lodash.pick": "^4.4.9",
"@types/react": "^19.0.2",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.4.7",
"storybook-addon-rslib": "^0.1.7",
"storybook-react-rsbuild": "^0.1.7",
"typescript": "^4.9.5",
"typescript-eslint": "^8.8.1",
"zustand": "^5.0.3"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"zustand": ">=4.5.5"
},
"private": false,
"dependencies": {
"lodash.pick": "^4.4.0"
},
"keywords": [
"zustand",
"react",
"state",
"utils",
"hooks"
]
}