-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.18 KB
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
{
"name": "zustand-computed",
"version": "2.1.4",
"description": "A Zustand middleware to create computed states.",
"keywords": [
"calculated",
"computed",
"middleware",
"npm",
"plugin",
"react",
"state",
"typescript",
"zustand"
],
"license": "MIT",
"author": "chrisvander",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisvander/zustand-computed.git"
},
"files": [
"/dist"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.mts"
}
},
"scripts": {
"fmt:check": "oxfmt --check",
"fmt": "oxfmt",
"lint": "oxlint",
"build": "tsdown"
},
"devDependencies": {
"@tsconfig/bun": "^1.0.7",
"@types/bun": "^1.1.13",
"immer": "^11.1.8",
"oxfmt": "^0.63.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.23.0",
"semver": "^7.6.3",
"tsdown": "^0.22.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"react": ">=18.2.0 <20.0.0",
"zustand": ">=5.0.0 <6.0.0"
}
}