- Add --swarm <count> capability to launch up to 100 agents in parallel - Support multiple providers: --claude, --openai, --gemini, --grok, --local - Implement lazy agent spawning for efficient resource usage - Add automatic authentication for all providers - Create parallel file processing with progress tracking - Migrate all tests from Jest to Vitest - Add comprehensive test coverage for swarm functionality - Support idiomatic usage: dev --claude --swarm 5 -p 'edit files...' - Version bump to 2.1.0
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "@hanzo/dev",
|
|
"version": "2.1.0",
|
|
"description": "Hanzo Dev - Meta AI development CLI that manages and runs all LLMs and CLI tools",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"dev": "./dist/cli/dev.js"
|
|
},
|
|
"scripts": {
|
|
"build": "esbuild src/cli/dev.ts --bundle --platform=node --target=node16 --outfile=dist/cli/dev.js --external:vscode --external:inquirer && chmod +x dist/cli/dev.js",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"test:ci": "vitest run --reporter=json --reporter=default",
|
|
"test:watch": "vitest --watch",
|
|
"test:ui": "vitest --ui",
|
|
"test:coverage": "vitest --coverage",
|
|
"test:swe-bench": "vitest run --testNamePattern=SWE-bench",
|
|
"lint": "eslint src tests --ext .ts",
|
|
"type-check": "tsc --noEmit",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"llm",
|
|
"cli",
|
|
"claude",
|
|
"openai",
|
|
"gemini",
|
|
"aider",
|
|
"openhands",
|
|
"development",
|
|
"tools"
|
|
],
|
|
"author": "Hanzo AI",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@iarna/toml": "^2.2.5",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^11.1.0",
|
|
"glob": "^10.3.10",
|
|
"inquirer": "^9.2.12",
|
|
"ora": "^7.0.1",
|
|
"uuid": "^9.0.1",
|
|
"ws": "^8.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^8.1.0",
|
|
"@types/inquirer": "^9.0.8",
|
|
"@types/node": "^20.19.5",
|
|
"@types/uuid": "^9.0.7",
|
|
"@types/ws": "^8.5.10",
|
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
"@typescript-eslint/parser": "^6.19.0",
|
|
"@vitest/ui": "^3.2.4",
|
|
"esbuild": "^0.25.6",
|
|
"eslint": "^8.56.0",
|
|
"typescript": "^5.3.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hanzoai/dev.git",
|
|
"directory": "packages/dev"
|
|
},
|
|
"homepage": "https://hanzo.ai",
|
|
"bugs": {
|
|
"url": "https://github.com/hanzoai/dev/issues"
|
|
}
|
|
}
|