-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "react-bridgestate",
"version": "0.3.2",
"description": "A shared state management and routing lib for React apps",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"demo": "npx auxsrv tests/Shared_state_without_Context",
"preversion": "npx npm-run-all shape test",
"shape": "npx codeshape",
"t3": "npx auxsrv tests/Tic-tac-toe",
"test": "npx playwright test --project=chromium",
"typecheck": "npx codeshape typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axtk/react-bridgestate.git"
},
"keywords": [
"state",
"state management",
"react state management",
"shared state",
"global state",
"routing",
"react router"
],
"license": "MIT",
"author": "axtk",
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"auxsrv": "^0.3.11",
"immer": "^11.1.4",
"react-dom": "^19.2.4",
"url-shape": "^2.1.6",
"zod": "^4.3.6"
},
"dependencies": {
"bridgestate": "^0.3.0"
}
}