mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
- Update all packages from 0.13.x to 0.14.0 - Update sandbox image URI to 0.14.0 This prepares the 0.14.0 release with updated version numbers across all workspace packages. Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
34 lines
717 B
JSON
34 lines
717 B
JSON
{
|
|
"name": "@qwen-code/channel-weixin",
|
|
"version": "0.14.0",
|
|
"description": "WeChat (Weixin) channel adapter for Qwen Code",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./accounts": {
|
|
"types": "./dist/accounts.d.ts",
|
|
"default": "./dist/accounts.js"
|
|
},
|
|
"./login": {
|
|
"types": "./dist/login.d.ts",
|
|
"default": "./dist/login.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build"
|
|
},
|
|
"dependencies": {
|
|
"@qwen-code/channel-base": "file:../base"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|