-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.7 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
{
"name": "gastown-boy",
"version": "0.2.3",
"description": "Retro terminal UI for Gastown multi-agent orchestration",
"type": "module",
"bin": {
"gt-boy": "./bin/cli.js"
},
"files": [
"bin",
"backend",
"frontend",
"scripts"
],
"scripts": {
"postinstall": "node bin/postinstall.js",
"dev": "./scripts/dev.sh",
"dev:remote": "./scripts/dev.sh",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"kill": "lsof -ti:3000,3001 | xargs kill -9 2>/dev/null || true",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"start": "npx concurrently -k -n backend,frontend -c blue,green \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm run preview",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"tunnel": "./scripts/tunnel.sh",
"tunnel:auto": "./scripts/tunnel.sh --no-wait",
"prepublishOnly": "npm run build"
},
"keywords": [
"gastown",
"cli",
"terminal",
"ui",
"multi-agent",
"orchestration"
],
"author": "wsaults",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wsaults/gastown-boy.git"
},
"bugs": {
"url": "https://github.com/wsaults/gastown-boy/issues"
},
"homepage": "https://github.com/wsaults/gastown-boy#readme",
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=20.0.0"
}
}