-
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.45 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.45 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": "@digital-threads/loom",
"version": "0.1.0",
"type": "module",
"description": "Loom — a TUI host that unifies aimux, Token Pilot and Task Journal behind a single plugin-based interface.",
"license": "MIT",
"author": "Digital-Threads",
"repository": {
"type": "git",
"url": "git+https://github.com/Digital-Threads/loom.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"loom": "dist/cli.js"
},
"files": ["dist", "README.md"],
"scripts": {
"dev": "bun run src/cli.tsx",
"build:host": "tsc -p tsconfig.json",
"build:web": "vite build web",
"copy:manifests": "node scripts/copy-manifests.mjs",
"build": "tsc -p tsconfig.json && bun run build:web && bun run copy:manifests",
"start": "bun dist/cli.js",
"test": "vitest run",
"smoke:bun": "bun test/bun-smoke.mjs",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@digital-threads/aimux": "file:../aimux",
"@digital-threads/loom-knowledge": "file:../knowledge",
"@digital-threads/loom-swarm": "file:../swarm",
"@digital-threads/loom-quality": "file:../quality",
"better-sqlite3": "^12.10.1",
"hono": "^4.12.25",
"ink": "^7.0.1",
"react": "^19.2.5",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.9.2",
"@types/react": "^19.2.14",
"ink-testing-library": "^4.0.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}