Files
Aperant/package.json
StillKnotKnownandClaude Opus 4.6 1daed93dfb feat(i18n): add i18n validation script
Add script to validate:
- All JSON files are valid
- All locales have matching keys
- No missing translations across namespaces

Run with: npm run validate:i18n

Co-Authored-By: Claude Opus 4.6 <[email protected]>
2026-03-14 10:32:57 +02:00

52 lines
1.4 KiB
JSON

{
"name": "auto-claude",
"version": "2.8.0-beta.1",
"description": "Autonomous multi-agent coding framework powered by Claude AI",
"license": "AGPL-3.0",
"author": "Auto Claude Team",
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"install:all": "cd apps/desktop && npm install",
"start": "cd apps/desktop && npm run build && npm run start",
"dev": "cd apps/desktop && npm run dev",
"dev:debug": "cd apps/desktop && npm run dev:debug",
"dev:mcp": "cd apps/desktop && npm run dev:mcp",
"build": "cd apps/desktop && npm run build",
"lint": "cd apps/desktop && npm run lint",
"test": "cd apps/desktop && npm test",
"validate:i18n": "node scripts/validate-i18n.js",
"package": "cd apps/desktop && npm run package",
"package:mac": "cd apps/desktop && npm run package:mac",
"package:win": "cd apps/desktop && npm run package:win",
"package:linux": "cd apps/desktop && 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"
}
}