mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
- Add @qwen-code/channel-dingtalk package with stream-based bot integration - Support clientId/clientSecret authentication for DingTalk - Add message deduplication and group chat mention handling - Update ChannelConfig type to include dingtalk channel type Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
18 lines
414 B
JSON
18 lines
414 B
JSON
{
|
|
"name": "@qwen-code/channel-dingtalk",
|
|
"version": "0.1.0",
|
|
"description": "DingTalk channel adapter for Qwen Code",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"@qwen-code/channel-base": "file:../base",
|
|
"dingtalk-stream-sdk-nodejs": "^2.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|