-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
175 lines (175 loc) · 8.26 KB
/
package.json
File metadata and controls
175 lines (175 loc) · 8.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "@jtan15010/godel",
"version": "1.0.0",
"description": "Godel - Agent Orchestration Platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/davidkimai/godel.git"
},
"homepage": "https://github.com/davidkimai/godel",
"bugs": {
"url": "https://github.com/davidkimai/godel/issues"
},
"license": "MIT",
"author": {
"name": "David Kim",
"email": "davidkimai@github.com"
},
"keywords": [
"ai",
"agents",
"orchestration",
"team",
"llm",
"kimi",
"claude"
],
"bin": {
"godel": "./dist/src/index.js",
"swarmctl": "./dist/src/cli/index.js"
},
"scripts": {
"preflight:cwd": "node scripts/ensure-project-root.js",
"build": "npm run preflight:cwd && tsc && npm run copy:proto",
"copy:proto": "cp -r src/federation/proto dist/src/federation/ && cp -r src/federation/cluster/proto dist/src/federation/cluster/",
"test": "npm run preflight:cwd && jest",
"test:watch": "npm run preflight:cwd && jest --watch",
"test:release-gate": "npm run preflight:cwd && CI=1 jest --runInBand tests/unit/queue/task-queue.test.ts tests/integrations/openclaw/adapter.test.ts tests/integrations/openclaw/integration.test.ts tests/state-persistence.test.ts tests/state-aware-orchestrator.test.ts",
"test:performance": "npm run preflight:cwd && ts-node tests/performance/benchmark.ts",
"benchmark:boot-time": "npm run preflight:cwd && ts-node tests/benchmarks/boot-time.bench.ts",
"benchmark:oolong": "npm run preflight:cwd && tsx benchmarks/oolong/index.ts",
"test:perf:baseline": "npm run preflight:cwd && ts-node tests/performance/benchmark.ts --scenario baseline",
"test:perf:standard": "npm run preflight:cwd && ts-node tests/performance/benchmark.ts --scenario standard",
"test:perf:full": "npm run preflight:cwd && ts-node tests/performance/benchmark.ts --scenario full",
"test:load": "npm run preflight:cwd && ts-node tests/load/run.ts",
"test:load:10": "npm run preflight:cwd && ts-node tests/load/run.ts --scale 10",
"test:load:25": "npm run preflight:cwd && ts-node tests/load/run.ts --scale 25",
"test:load:50": "npm run preflight:cwd && ts-node tests/load/run.ts --scale 50",
"test:load:all": "npm run preflight:cwd && ts-node tests/load/run.ts --all",
"test:integration": "npm run preflight:cwd && ts-node scripts/run-live-integration.ts",
"test:integration:live": "npm run preflight:cwd && ts-node scripts/run-live-integration.ts",
"test:integration:watch": "npm run preflight:cwd && jest tests/integration/scenarios --testTimeout=120000 --watch",
"test:integration:coverage": "npm run preflight:cwd && jest tests/integration/scenarios --testTimeout=120000 --coverage --runInBand",
"test:integration:db": "npm run preflight:cwd && jest --testPathPattern='database'",
"dev": "npm run preflight:cwd && ts-node src/index.ts",
"lint": "npm run preflight:cwd && eslint src/ --ext .ts",
"lint:fix": "npm run preflight:cwd && eslint src/ --ext .ts --fix",
"typecheck": "npm run preflight:cwd && tsc --noEmit",
"verify:release": "npm run preflight:cwd && npm run typecheck && npm run build && npm run test:release-gate",
"quality": "npm run preflight:cwd && npm run lint && npm run typecheck && npm test",
"migrate": "npm run preflight:cwd && ts-node scripts/migrate.ts",
"migrate:status": "npm run preflight:cwd && ts-node scripts/migrate.ts status",
"migrate:create": "npm run preflight:cwd && ts-node scripts/migrate.ts create",
"migrate:rollback": "npm run preflight:cwd && ts-node scripts/migrate.ts rollback",
"db:migrate": "npm run preflight:cwd && ./scripts/migrations/migrate-db.sh",
"db:validate": "npm run preflight:cwd && ./scripts/migrations/validate-config.sh",
"db:up": "npm run preflight:cwd && docker-compose up -d postgres redis",
"db:down": "npm run preflight:cwd && docker-compose down",
"db:logs": "npm run preflight:cwd && docker-compose logs -f postgres redis",
"config:validate": "npm run preflight:cwd && ./scripts/migrations/validate-config.sh",
"logs": "npm run preflight:cwd && ts-node scripts/logs.ts",
"logs:query": "npm run preflight:cwd && ts-node scripts/logs.ts query",
"logs:tail": "npm run preflight:cwd && ts-node scripts/logs.ts tail",
"logs:stats": "npm run preflight:cwd && ts-node scripts/logs.ts stats",
"logs:agents": "npm run preflight:cwd && ts-node scripts/logs.ts agents",
"monitoring:up": "npm run preflight:cwd && docker-compose -f monitoring/docker-compose.yml up -d",
"monitoring:down": "npm run preflight:cwd && docker-compose -f monitoring/docker-compose.yml down",
"monitoring:logs": "npm run preflight:cwd && docker-compose -f monitoring/docker-compose.yml logs -f",
"monitoring:status": "npm run preflight:cwd && docker-compose -f monitoring/docker-compose.yml ps",
"loki:ready": "npm run preflight:cwd && curl -s http://localhost:3100/ready",
"grafana:open": "npm run preflight:cwd && open http://localhost:3000",
"cli:build": "npm run preflight:cwd && tsc src/cli/index.ts --outDir dist/cli --esModuleInterop --target ES2020 --module commonjs --moduleResolution node",
"cli:dev": "npm run preflight:cwd && ts-node src/cli/index.ts",
"cli:install": "npm run preflight:cwd && npm run build && npm link",
"swarmctl": "npm run preflight:cwd && node dist/cli/index.js",
"security:scan": "npm run preflight:cwd && node scripts/security-scan.js",
"guard:install-hook": "npm run preflight:cwd && ./scripts/install-home-repo-block-hook.sh",
"worktree:list": "npm run preflight:cwd && ./scripts/worktree-manager.sh list",
"worktree:prune": "npm run preflight:cwd && ./scripts/worktree-manager.sh prune"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/jwt": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.5",
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^2.5.0",
"@opentelemetry/core": "^2.5.0",
"@opentelemetry/exporter-jaeger": "^2.5.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.211.0",
"@opentelemetry/instrumentation-http": "^0.211.0",
"@opentelemetry/instrumentation-pg": "^0.63.0",
"@opentelemetry/instrumentation-redis": "^0.59.0",
"@opentelemetry/resources": "^2.5.0",
"@opentelemetry/sdk-node": "^0.211.0",
"@opentelemetry/sdk-trace-node": "^2.5.0",
"@opentelemetry/semantic-conventions": "^1.39.0",
"@sinclair/typebox": "^0.34.48",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/helmet": "^4.0.0",
"@types/inquirer": "^9.0.9",
"@types/react": "^19.2.13",
"@types/ws": "^8.18.1",
"async-mutex": "^0.5.0",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.6.2",
"blessed": "^0.1.81",
"chalk": "^4.1.2",
"cli-spinners": "^3.4.0",
"commander": "^12.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.21.2",
"fastify": "^5.7.4",
"fastify-plugin": "^5.1.0",
"glob": "^10.3.0",
"ink": "^6.6.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"inquirer": "^13.2.2",
"ioredis": "^5.9.2",
"jiti": "^2.6.1",
"opossum": "^5.0.1",
"ora": "^5.4.1",
"pg": "^8.13.1",
"pg-pool": "^3.7.0",
"prom-client": "^15.1.3",
"rate-limiter-flexible": "^9.1.0",
"react": "^19.2.4",
"redis": "^5.10.0",
"uuid": "^13.0.0",
"ws": "^8.19.0",
"yaml": "^2.5.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/blessed": "^0.1.25",
"@types/glob": "^8.1.0",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.11.10",
"@types/pg-pool": "^2.0.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.28.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.7.3"
}
}