-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.01 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.01 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
{
"name": "agentfactory",
"private": true,
"packageManager": "pnpm@10.28.0",
"description": "The open-source software factory — multi-agent fleet management for coding agents",
"repository": {
"type": "git",
"url": "git+https://github.com/RenseiAI/agentfactory.git"
},
"homepage": "https://github.com/RenseiAI/agentfactory#readme",
"bugs": {
"url": "https://github.com/RenseiAI/agentfactory/issues"
},
"author": "Rensei AI (https://rensei.ai)",
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"pnpm": "^9 || ^10"
},
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo run clean",
"agentfactory": "node --import tsx packages/cli/src/index.ts",
"af-agent": "node --import tsx packages/cli/src/agent.ts",
"af-orchestrator": "node --import tsx packages/cli/src/orchestrator.ts",
"af-worker": "node --import tsx packages/cli/src/worker.ts",
"af-worker-fleet": "node --import tsx packages/cli/src/worker-fleet.ts",
"af-cleanup": "node --import tsx packages/cli/src/cleanup.ts",
"af-queue-admin": "node --import tsx packages/cli/src/queue-admin.ts",
"af-analyze-logs": "node --import tsx packages/cli/src/analyze-logs.ts",
"af-linear": "node --import tsx packages/cli/src/linear.ts",
"af-governor": "node --import tsx packages/cli/src/governor.ts",
"af-sync-routes": "node --import tsx packages/cli/src/sync-routes.ts",
"af-status": "node --import tsx packages/cli/src/status.ts",
"af-setup": "node --import tsx packages/cli/src/setup.ts",
"af-migrate-worktrees": "node --import tsx packages/cli/src/migrate-worktrees.ts",
"af-code": "node --import tsx packages/cli/src/code.ts",
"prepare": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.52.0",
"@vitest/coverage-v8": "^3.2.3",
"tsx": "^4.21.0",
"turbo": "^2.5.0",
"typescript": "^5.7.3"
}
}