- Reorganized directory structure: pkg/ -> packages/, app/ -> apps/ - Added @hanzo/ai package with Vercel AI SDK patterns - Implemented AgentKit concepts (agents, networks, state, routers) - Added MCP (Model Context Protocol) integration - Integrated telemetry with Hanzo Cloud observability - Fixed all failing tests across all packages - Updated Makefile with comprehensive commands for development and release - Added support for Gemini, Codex, and Grok CLI tools - Fixed import paths and build configuration for new structure
31 lines
756 B
JSON
31 lines
756 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",
|
|
"@types/jsdom": "^21.1.7",
|
|
"@types/ws": "^8.18.1",
|
|
"esbuild": "^0.25.6",
|
|
"jsdom": "^26.1.0",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^0.34.6",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"license": "MIT"
|
|
} |