Files
Aperant/package.json
T
Test User d4044d263f chore: consolidate package-lock.json to root level
Remove duplicate apps/frontend/package-lock.json and use the root-level
lock file for dependency management. This simplifies the dependency tree
and ensures consistent package resolution across the monorepo.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 19:36:01 +01:00

51 lines
1.5 KiB
JSON

{
"name": "auto-claude",
"version": "2.7.5",
"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"
},
"overrides": {
"@electron/rebuild": "4.0.2"
}
}