-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.73 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
{
"name": "zustand-mutable",
"version": "0.3.0",
"private": false,
"description": "A sweet way to use immer-like mutable updates",
"keywords": [
"immer",
"immer-like",
"limu",
"middleware",
"mutable",
"mutative",
"zustand"
],
"author": "Danilo Britto",
"repository": {
"type": "git",
"url": "git+https://github.com/zustandjs/zustand-mutable.git"
},
"source": "./src/index.ts",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"test": "pnpm run \"/^test:.*/\"",
"test:types": "tsc --noEmit",
"test:lint": "oxlint",
"test:lint:fix": "oxlint --fix",
"test:fmt": "oxfmt --check",
"test:fmt:fix": "oxfmt --write",
"test:spec": "vitest run",
"release": "release publish"
},
"devDependencies": {
"@ossjs/release": "^0.10.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"happy-dom": "^20.0.11",
"immer": "^11.1.3",
"limu": "^4.1.1",
"mutative": "^1.3.0",
"oxfmt": "^0.21.0",
"oxlint": "^1.36.0",
"prettier": "3.7.4",
"react": "^19.2.3",
"typescript": "~5.9.3",
"vite": "npm:rolldown-vite@7.2.5",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.16",
"zustand": "^5.0.9"
},
"peerDependencies": {
"zustand": "^5.0.9"
},
"packageManager": "pnpm@10.18.3",
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
}
}
}