55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "auto-claude",
|
|
"version": "2.7.6",
|
|
"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",
|
|
"test:coverage": "node scripts/test-backend.js --cov --cov-report=term-missing --cov-report=html",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"lucide-react": "^0.562.0"
|
|
},
|
|
"overrides": {
|
|
"@electron/rebuild": "4.0.2"
|
|
}
|
|
}
|