-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 4.75 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 4.75 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@adsq/solid-signal-store",
"version": "0.1.5",
"description": "Fine-grained SolidJS store with a callable nested proxy API: reads like store.user.name(), writes like ordinary assignment, and wakes only the paths a component actually consumes.",
"repository": {
"type": "git",
"url": "git+https://github.com/adsqx/solid-signal-store.git"
},
"homepage": "https://github.com/adsqx/solid-signal-store#readme",
"bugs": "https://github.com/adsqx/solid-signal-store/issues",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./jsnq": {
"import": "./dist/jsnq.js",
"types": "./dist/jsnq.d.ts"
},
"./devtools": {
"import": "./dist/devtools.js",
"types": "./dist/devtools.d.ts"
},
"./package.json": "./package.json"
},
"sideEffects": [
"./dist/jsnq.js"
],
"files": [
"dist",
"README.md",
"LICENSE",
"SKILL.md",
"AGENTS.md"
],
"scripts": {
"dev": "bun run --cwd examples/browser-demo dev",
"demo:install": "bun install --cwd examples/browser-demo",
"build": "node scripts/clean-dist.mjs && tsc && node scripts/fix-dist-esm-extensions.mjs",
"typecheck": "tsc --noEmit",
"prepack": "npm run build && npm run verify:exports",
"test": "bun run test:types && bun run test:array-methods && bun run test:proxy-delete && bun run test:wakeup-batch && bun run test:select-observable && bun run test:devtools-stream && bun run test:wait-for-store && bun run test:lifecycle && bun run test:nested-tree-batch && bun run test:nestable-cms && bun run test:store-component-flow && bun run test:store-board-wakeup && bun run test:deep-proxy-jsnq && bun run test:livequery && bun run test:bridge-contract && bun run test:array-splice-precise && bun run test:path-parity",
"verify": "bunx tsx verify.ts",
"demo": "bunx tsx demo.ts",
"bench:splice-precise": "bun --conditions browser test/splice-precise-bench.ts",
"bench:recursive-models": "bun test/recursive-models-compare.ts",
"bench:native": "bun --conditions browser test/native-vs-store-bench.ts",
"bench:store": "bun --conditions browser test/store-throughput-bench.ts",
"test:types": "tsc --noEmit --strict --target ES2022 --module ESNext --moduleResolution bundler --lib ES2022,DOM --skipLibCheck test/types-proxy-contract.ts",
"test:path-core": "bun test/path-core-parity.test.ts",
"test:path-utils-public": "bun test/path-utils-public-api.test.ts",
"test:array-methods": "bun --conditions browser test/array-methods-contract.test.ts",
"test:proxy-delete": "bun --conditions browser test/proxy-delete-semantics.test.ts",
"test:wakeup-batch": "bun --conditions browser test/wakeup-batch-reactivity.test.ts",
"test:select-observable": "bun --conditions browser test/select-observable-reactivity.test.ts",
"test:devtools-stream": "bun --conditions browser test/devtools-stream-contract.test.ts",
"test:wait-for-store": "bun --conditions browser test/wait-for-store.test.ts",
"test:lifecycle": "bun --conditions browser test/store-lifecycle.test.ts",
"test:nested-tree-batch": "bun --conditions browser test/nested-tree-batch.test.ts",
"test:nestable-cms": "bun --conditions browser test/nestable-cms-modes.test.ts",
"test:store-component-flow": "bun --conditions browser test/store-component-flow.test.ts",
"test:store-board-wakeup": "bun --conditions browser test/store-board-wakeup-contract.test.ts",
"test:livequery": "bun --conditions browser test/livequery-jsnq.test.ts",
"test:deep-proxy-jsnq": "bun --conditions browser test/deep-proxy-jsnq-flow.test.ts",
"browser-demo:install": "bun install --cwd examples/browser-demo",
"browser-demo:dev": "bun run --cwd examples/browser-demo dev",
"browser-demo:build": "bun run --cwd examples/browser-demo build",
"test:browser": "bun run browser-demo:install && bunx playwright test",
"test:browser:ui": "bun run browser-demo:install && bunx playwright test --ui",
"install:browsers": "bunx playwright install",
"test:bridge-contract": "bun --conditions browser test/jsnq-bridge-contract.test.ts",
"test:array-splice-precise": "bun --conditions browser test/array-splice-precise-wake.test.ts",
"verify:exports": "node scripts/verify-exports.mjs",
"test:path-parity": "bun --conditions browser test/path-core-jsnq-parity.test.ts"
},
"peerDependencies": {
"solid-js": ">=1.8.0 <2.0.0",
"@adsq/jsnq": "^0.1.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"solid-js": "1.9.14",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"@adsq/jsnq": "^0.1.0"
},
"keywords": [
"solidjs",
"reactive",
"store",
"proxy",
"jsnq"
],
"license": "MIT"
}