forked from subhangR/agent-maestro
-
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) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 2.05 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": "maestro-monorepo",
"version": "1.0.0",
"private": true,
"description": "Maestro - Multi-agent task orchestration system",
"workspaces": [
"maestro-pty-protocol",
"maestro-ui",
"maestro-server",
"maestro-cli",
"maestro-web"
],
"scripts": {
"postinstall": "chmod +x node_modules/node-pty/prebuilds/*/spawn-helper 2>/dev/null || true",
"dev:ui": "cd maestro-ui && bun run dev",
"dev:server": "cd maestro-server && bun run dev",
"dev:all": "cd maestro-ui && bun run dev:all",
"build:ui": "cd maestro-ui && bun run build",
"build:server": "cd maestro-server && bun run build",
"build:cli": "cd maestro-cli && bun run build",
"build:all": "bun run build:ui && bun run build:server && bun run build:cli",
"web": "bash scripts/start-web.sh",
"web:nobuild": "SKIP_BUILD=1 bash scripts/start-web.sh",
"prod:server": "PORT=2357 DATA_DIR=~/.maestro/data SESSION_DIR=~/.maestro/sessions NODE_ENV=production node maestro-server/dist/server.js",
"prod:build": "bash scripts/prod-build.sh",
"prod": "open -a 'Maestro Prod'",
"staging:prepare": "bun run build:server && bun run build:cli",
"staging:server": "PORT=4569 DATA_DIR=~/.maestro-staging/data SESSION_DIR=~/.maestro-staging/sessions NODE_ENV=development node maestro-server/dist/server.js",
"staging": "bun run staging:prepare && concurrently \"bun run staging:server\" \"cd maestro-ui && VITE_API_URL=http://localhost:4569/api VITE_WS_URL=ws://localhost:4569 bunx tauri dev\"",
"build:binary:server": "cd maestro-server && bun run build && bun run build:binary:darwin-arm64",
"build:binary:cli": "cd maestro-cli && bun run build && bun run build:binary:darwin-arm64",
"build:web": "cd maestro-ui && bun run build:web && cd ../maestro-server && bun run build && cd ../maestro-cli && bun run build"
},
"keywords": [
"maestro",
"agents",
"orchestration",
"cli",
"ui"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1"
},
"dependencies": {
"zod": "^4.3.6"
}
}