qwen-code/packages/channels/plugin-example/package.json
2026-04-22 00:22:45 +00:00

33 lines
684 B
JSON

{
"name": "@qwen-code/channel-plugin-example",
"version": "0.14.5-nightly.20260422.d1c8dff4d",
"private": true,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"qwen-extension.json"
],
"bin": {
"qwen-channel-plugin-example-server": "dist/start-server.js"
},
"scripts": {
"build": "tsc --build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@qwen-code/channel-base": "file:../base",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ws": "^8.5.0"
}
}