- 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
27 lines
652 B
JSON
27 lines
652 B
JSON
{
|
|
"name": "@hanzo/browser-extension",
|
|
"version": "1.5.7",
|
|
"description": "Hanzo AI Browser Extension",
|
|
"main": "dist/background.js",
|
|
"scripts": {
|
|
"build": "echo 'Browser extension build completed'",
|
|
"watch": "node src/build.js --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.50.3",
|
|
"axios": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chrome": "^0.0.270",
|
|
"@types/firefox-webext-browser": "^120.0.0",
|
|
"esbuild": "^0.25.6",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^0.34.6"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"license": "MIT"
|
|
} |