mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-09 17:19:02 +00:00
48 lines
1.5 KiB
JSON
48 lines
1.5 KiB
JSON
{
|
|
"name": "@qwen-code/chrome-bridge",
|
|
"version": "0.19.7",
|
|
"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"
|
|
}
|
|
}
|