- 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
24 lines
620 B
JSON
24 lines
620 B
JSON
{
|
|
"name": "@hanzo/site",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Hanzo AI Platform Gateway - Download hub for all platforms",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview --port 3001",
|
|
"clean": "rm -rf dist",
|
|
"clean:all": "rm -rf dist node_modules pnpm-lock.yaml",
|
|
"serve": "vite preview",
|
|
"test": "playwright test",
|
|
"test:ui": "playwright test --ui",
|
|
"test:headed": "playwright test --headed"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.54.1",
|
|
"terser": "^5.43.1",
|
|
"vite": "^5.4.19"
|
|
}
|
|
}
|