qwen-code/packages/chrome-extension/package.json
2026-07-03 00:42:56 +00:00

48 lines
1.5 KiB
JSON

{
"name": "@qwen-code/chrome-bridge",
"version": "0.19.5-nightly.20260703.b16baf1ff",
"description": "Chrome extension bridge for Qwen CLI - enables AI-powered browser interactions",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/QwenLM/qwen-code.git",
"directory": "packages/chrome-extension"
},
"keywords": [
"chrome-extension",
"qwen",
"cli",
"bridge",
"mcp",
"ai"
],
"author": "Qwen Team",
"license": "Apache-2.0",
"type": "module",
"files": [
"public/",
"README.md"
],
"scripts": {
"dev": "node scripts/dev-watch.js",
"debug:mac": "./scripts/debug.sh",
"sync:extension": "node scripts/sync-extension.js",
"build:bg": "node scripts/sync-extension.js && node config/esbuild.background.config.js",
"build:bg:watch": "node scripts/sync-extension.js && node config/esbuild.background.config.js --watch",
"build": "node scripts/sync-extension.js && node config/esbuild.background.config.js --production",
"test": "vitest run --config vitest.config.ts",
"test:ci": "vitest run --config vitest.config.ts",
"dev:chrome": "open -a 'Google Chrome' --args --load-extension=$PWD/dist/extension --auto-open-devtools-for-tabs",
"package": "npm run build && cd dist/extension && zip -r ../../chrome-extension.zip .",
"clean": "./scripts/clean.sh",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@types/chrome": "^0.1.32",
"esbuild": "^0.25.3",
"typescript": "^5.8.3"
}
}