-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "repair-ai",
"version": "1.0.0",
"description": "Autonomous Build & Test Recovery via Agentic Intelligence",
"type": "module",
"main": "dist/index.js",
"bin": {
"repair": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"repair": "tsx src/cli.ts",
"demo": "tsx src/cli.ts demo",
"demo:advanced": "tsx src/cli.ts demo:advanced",
"demo:complex": "tsx src/cli.ts demo:complex",
"ui": "tsx src/cli.ts ui",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai",
"autonomous",
"build",
"test",
"recovery",
"agentic",
"mcp"
],
"author": "REPAIR.ai Team",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"groq-sdk": "^0.8.0",
"jsonrepair": "^3.8.0",
"sql.js": "^1.11.0",
"uuid": "^11.0.4",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}