-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.4 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
{
"name": "statety",
"version": "1.0.0",
"description": "A simple React state management library built around reactive key-value stores",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c && tsc",
"build:rollup": "rollup -c",
"build:types": "tsc",
"test": "vitest",
"test:watch": "vitest --watch",
"docs:dev": "cd docs && npm run dev",
"docs:build": "cd docs && npm run build",
"docs:preview": "cd docs && npm run preview"
},
"keywords": [
"react",
"state-management",
"hooks",
"typescript",
"reactive",
"global-state",
"redux",
"store"
],
"author": "David Cioara",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dvdbits/statety.git"
},
"homepage": "https://statety.dev",
"bugs": {
"url": "https://github.com/dvdbits/statety/issues"
},
"dependencies": {
"immer": "10.1.3"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"jsdom": "^27.0.0",
"rollup": "^4.50.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}