-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 734 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 734 Bytes
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
{
"name": "@kingfs/autodev",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Policy-driven AI software-development automation on agent-compose.",
"engines": {
"node": ">=20"
},
"bin": {
"autodev-runs": "dist/src/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/src/main.js",
"runs": "node dist/src/cli.js"
},
"dependencies": {
"@chaitin-ai/agent-compose-runtime-sdk": "^0.7.0",
"yaml": "^2.8.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.0"
}
}