-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 986 Bytes
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
{
"name": "loom",
"private": true,
"version": "0.25.0",
"description": "Orchestrate a fleet of real Claude Code agents on your Claude subscription (Pro/Max), not per-token API bills — durable sessions, multi-agent orchestration, all local-first on your own machine.",
"license": "MIT",
"packageManager": "pnpm@10.6.4",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"typecheck": "turbo typecheck",
"lint": "turbo lint",
"daemon": "pnpm --filter @loom/daemon dev",
"daemon:stable": "node scripts/daemon-supervisor.mjs",
"web": "pnpm --filter @loom/web dev",
"pack:npm": "node scripts/build-npm-package.mjs",
"manifests": "node scripts/generate-manifests.mjs"
},
"devDependencies": {
"turbo": "^2.4.0",
"typescript": "^5.8.0",
"@types/node": "^22.10.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"node-pty",
"esbuild"
]
}
}