-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "bridgestate",
"version": "0.3.0",
"description": "Vanilla TS/JS shared state management and routing",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"demo": "npx auxsrv tests/URL-based_rendering",
"preversion": "npx npm-run-all shape test",
"shape": "npx codeshape",
"test": "npx npm-run-all test1 test2",
"test1": "node tests/index.ts",
"test2": "npx playwright test --project=chromium",
"typecheck": "npx codeshape typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axtk/bridgestate.git"
},
"keywords": [
"state",
"shared state",
"state management",
"persistent state",
"routing"
],
"author": "axtk",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"auxsrv": "^0.3.11",
"url-shape": "^2.1.6",
"zod": "^4.3.6"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0",
"quasiurl": "^1.1.15"
}
}