-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (84 loc) · 1.93 KB
/
package.json
File metadata and controls
86 lines (84 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "zenbox",
"version": "2.2.0",
"type": "module",
"license": "MIT",
"packageManager": "pnpm@10.26.2",
"description": "React state management that feels like Vue vibes in React",
"keywords": [
"vue",
"zustand",
"react",
"state",
"management"
],
"author": {
"name": "Del Wang",
"email": "hello@xbox.work",
"url": "https://github.com/idootop"
},
"homepage": "https://github.com/idootop/ZenBox",
"bugs": {
"url": "https://github.com/idootop/ZenBox/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idootop/ZenBox.git"
},
"scripts": {
"prepack": "pnpm test && clean-pkg-json",
"build": "del build",
"test": "pnpm build && vitest run",
"lint": "biome check --write --no-errors-on-unmatched --diagnostic-level=error ."
},
"files": [
"dist"
],
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"require": {
"types": "./dist/*.d.cts",
"default": "./dist/*.cjs"
}
}
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"@del-wang/equals": "^1.2.0",
"immer": "^11.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@del-wang/config": "^1.5.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/react": "^19.2.7",
"clean-pkg-json": "^1.3.0",
"jsdom": "^27.4.0",
"lefthook": "^2.0.13",
"tsdown": "^0.18.3",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}