qwen-code/packages/channels/plugin-example/package.json
tanzhenxin a700ce8186 chore(release): add channel packages to release workflow
- Bump channel package versions to 0.13.0
- Add publish steps for @qwen-code/channel-base and @qwen-code/channel-plugin-example
- Update version script to convert file: references to semver for published packages

This enables proper npm publishing of channel packages during the release process.

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 06:16:22 +00:00

31 lines
599 B
JSON

{
"name": "@qwen-code/channel-plugin-example",
"version": "0.13.0",
"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"
},
"dependencies": {
"@qwen-code/channel-base": "file:../base",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ws": "^8.5.0"
}
}