forked from chrisvander/zustand-computed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.36 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
{
"name": "zustand-computed",
"version": "1.4.0",
"description": "A Zustand middleware to create computed states.",
"author": "chrisvander",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": "chrisvander/zustand-computed",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"babel-jest": "^29.3.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"react": "^18.2.0",
"semver": "^7.3.8",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"zustand": "^4.3.8"
},
"peerDependencies": {
"react": "^18.2.0",
"zustand": "^4.3.8"
},
"keywords": [
"react",
"state",
"computed",
"calculated",
"zustand",
"plugin",
"middleware",
"npm",
"typescript"
]
}