**流式消息** - 新增 StreamSender 类,支持流式消息分片发送 - 实现消息队列异步处理,防止阻塞心跳 - 支持 C2C/Group 流式消息 **架构重构** - 移除 clawdbot/moltbot 旧配置,统一为 qqbot - 新增 upgrade-and-run.sh 一键升级脚本 - 重构 api/channel/gateway/outbound 模块 - 新增富媒体消息发送接口
33 lines
644 B
JSON
33 lines
644 B
JSON
{
|
|
"name": "@openclaw/qqbot",
|
|
"version": "2026.1.31",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"description": "OpenClaw QQ Bot channel plugin with streaming message support",
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "tsc || true",
|
|
"dev": "tsc --watch",
|
|
"prepack": "npm install --omit=dev"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.18.0"
|
|
},
|
|
"bundledDependencies": [
|
|
"ws"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@types/ws": "^8.5.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": "*"
|
|
}
|
|
}
|