-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1 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
{
"name": "forq",
"version": "0.1.0",
"private": true,
"description": "Fork the queue. Burn down GitHub issue & PR backlogs with boxd cloud VMs and coding agents.",
"type": "module",
"packageManager": "pnpm@10.18.2",
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"scripts": {
"dev": "concurrently -n server,web -c yellow,cyan \"pnpm dev:server\" \"pnpm dev:web\"",
"dev:server": "pnpm --filter @forq/server dev",
"dev:web": "pnpm --filter @forq/web dev",
"dev:cli": "pnpm --filter @forq/cli dev",
"build": "pnpm --filter @forq/shared build && pnpm --filter @forq/api-client build && pnpm -r --filter \"@forq/server\" --filter \"@forq/web\" --filter \"@forq/cli\" build",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r exec rm -rf dist .tsbuildinfo node_modules/.cache"
},
"devDependencies": {
"concurrently": "10.0.3",
"typescript": "5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"protobufjs"
]
}
}