forked from AndyMik90/Auto-Claude
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "auto-claude",
"version": "2.7.2",
"description": "Autonomous multi-agent coding framework powered by Claude AI",
"license": "AGPL-3.0",
"author": "Auto Claude Team",
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"install:backend": "node scripts/install-backend.js",
"install:frontend": "cd apps/frontend && npm install",
"install:all": "npm run install:backend && npm run install:frontend",
"start": "cd apps/frontend && npm run build && npm run start",
"dev": "cd apps/frontend && npm run dev",
"dev:debug": "cd apps/frontend && npm run dev:debug",
"dev:mcp": "cd apps/frontend && npm run dev:mcp",
"build": "cd apps/frontend && npm run build",
"lint": "cd apps/frontend && npm run lint",
"test": "cd apps/frontend && npm test",
"test:backend": "node scripts/test-backend.js",
"package": "cd apps/frontend && npm run package",
"package:mac": "cd apps/frontend && npm run package:mac",
"package:win": "cd apps/frontend && npm run package:win",
"package:linux": "cd apps/frontend && npm run package:linux"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AndyMik90/Auto-Claude.git"
},
"keywords": [
"ai",
"claude",
"autonomous",
"coding",
"agents",
"electron"
],
"devDependencies": {
"jsdom": "^27.4.0"
}
}