-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.94 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.94 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
{
"name": "gooseherd",
"version": "1.0.0",
"homepage": "https://goose-herd.com",
"repository": {
"type": "git",
"url": "https://github.com/chocksy/gooseherd.git"
},
"description": "Self-hosted AI coding agent orchestrator — herds Goose agents via Slack and opens PRs",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"runner": "tsx src/runner/index.ts",
"k8s:build-app": "bash scripts/kubernetes/build-app-image.sh",
"k8s:smoke": "bash scripts/kubernetes/manual-smoke.sh",
"k8s:harness": "bash scripts/kubernetes/manual-harness.sh",
"k8s:local-up": "bash scripts/kubernetes/local-up.sh",
"k8s:local-down": "bash scripts/kubernetes/local-down.sh",
"k8s:local-status": "bash scripts/kubernetes/local-status.sh",
"check": "tsc --noEmit",
"test": "node --test --test-force-exit --import tsx tests/*.test.ts",
"local:trigger": "tsx src/local-trigger.ts",
"inspect": "tsx scripts/inspect-run.ts",
"validate": "tsx scripts/validate-env.ts",
"setup": "tsx scripts/setup.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/db/seed-json.ts",
"eval": "tsx scripts/run-eval.ts"
},
"dependencies": {
"@browserbasehq/stagehand": "^3.1.0",
"@kubernetes/client-node": "^1.4.0",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.0",
"@slack/bolt": "^4.5.0",
"deepmerge": "^4.3.1",
"dockerode": "^4.0.9",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.45.1",
"p-queue": "^8.1.1",
"playwright": "^1.58.2",
"postgres": "^3.4.8",
"yaml": "^2.8.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@clack/prompts": "^1.0.1",
"@types/dockerode": "^4.0.1",
"@types/node": "^22.13.9",
"drizzle-kit": "^0.31.9",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}