-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.85 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
{
"name": "board",
"version": "0.1.2",
"type": "module",
"private": true,
"scripts": {
"setup": "bun run scripts/setup.ts",
"serve": "bun run src/server.ts",
"triage": "bun run bin/triage.ts",
"switchboard": "bun run switchboard/server.ts",
"sync-resolvers": "sh scripts/sync-resolvers.sh",
"test": "bun test",
"typecheck": "tsc --noEmit -p . && tsc --noEmit -p src/client && tsc --noEmit -p src/client/__tests__",
"capture": "bun tests/capture.ts --out tests/.captures",
"capture:baseline": "bun tests/capture.ts --out tests/baselines",
"capture:compare": "bun tests/compare.ts",
"build:client": "bun run scripts/build-client.ts",
"build": "bun run build:client && bun build --compile src/compiled.ts --outfile dist/board"
},
"dependencies": {
"@mattstack/glance": "^0.19.0",
"@mattstack/rt-client": "^0.5.0",
"@mattstack/settings-kit": "^0.1.2",
"@mattstack/tui-kit": "file:../tui-kit",
"invadrs": "^0.2.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^26.2.0",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"pixelmatch": "^7.2.0",
"playwright": "^1.62.1",
"pngjs": "^7.0.0",
"typescript": "^7.0.2"
},
"//soribashi": "No @soribashi/* DEPENDENCY here, deliberately: registerTheme/SoribashiProvider come from @mattstack/tui-kit/provider, which keeps them on the same resolved path as the kit's own recipes. A direct @soribashi/core dep would bundle a SECOND copy of factory and silently break theming. The kit now resolves @soribashi/core from the registry (no file: deps in its own package.json), so no overrides block is needed here either. See docs/tui-kit-devloop.md."
}