-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 1.24 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
{
"name": "zustand-computed",
"version": "2.0.2",
"author": "chrisvander",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisvander/zustand-computed.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@tsconfig/bun": "^1.0.7",
"@types/bun": "^1.1.13",
"@types/node": "^22.9.0",
"husky": "^9.1.6",
"react": "^18.3.1",
"semver": "^7.6.3",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"zustand": "^5.0.0"
},
"peerDependencies": {
"react": "^18.2.0",
"zustand": "^5.0.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.mjs"
}
},
"description": "A Zustand middleware to create computed states.",
"files": [
"/dist"
],
"keywords": [
"zustand",
"computed",
"calculated",
"state",
"react",
"plugin",
"middleware",
"npm",
"typescript"
],
"license": "MIT",
"scripts": {
"check": "biome check --write",
"format": "biome format --write",
"lint": "biome lint",
"build": "vite build"
}
}