-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.54 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
59
60
61
62
63
64
65
{
"name": "nstate",
"version": "0.2.35",
"description": "A simple react state management library with low mental load.",
"main": "./cjs/index.js",
"typings": "./cjs/index",
"types": "./cjs/index",
"module": "./esm/index.js",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
}
}
},
"scripts": {
"build": "foy build",
"test": "foy test",
"postpublish": "git push origin master --tags"
},
"files": [
"cjs",
"esm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zaaack/nstate.git"
},
"keywords": [
"react",
"state",
"state-management",
"store",
"immer"
],
"author": "Zack Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaaack/nstate/issues"
},
"homepage": "https://github.com/zaaack/nstate#readme",
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^22.5.2",
"foy": "^0.2.33",
"react": "^18.3.1",
"react-test-renderer": "^18.3.1",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"dependencies": {
"immer": "^10.1.1",
"mitt": "^3.0.1",
"shallow-equal": "^3.1.0",
"tslib": "^2.7.0"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}