-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.19 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "timbot-ws",
"version": "2026.4.3-beta.1",
"type": "module",
"description": "OpenClaw Tencent Cloud IM intelligent bot channel plugin via WebSocket SDK",
"author": "longyuqi@tencent.com",
"license": "MIT",
"homepage": "https://github.com/Tencent-RTC/TIMBot-WS#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Tencent-RTC/TIMBot-WS.git"
},
"bugs": {
"url": "https://github.com/Tencent-RTC/TIMBot-WS/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"openclaw.plugin.json"
],
"keywords": [
"openclaw",
"openclaw-plugin",
"tencent-im",
"timbot",
"timbot-ws",
"chatbot",
"websocket"
],
"scripts": {
"build": "tsc && mkdir -p dist/src/debug && cp src/debug/GenerateTestUserSig-es.js src/debug/lib-generate-test-usersig-es.min.js dist/src/debug/ && mkdir -p dist/im-sdk-bundle && cp -rf ./im-node-sdk-dist/* dist/im-sdk-bundle/",
"prepack": "pnpm build",
"postinstall": "cp -rf ./im-node-sdk-dist/* ./node_modules/@tencentcloud/lite-chat/ 2>/dev/null; find ./node_modules/.pnpm -path '*/@tencentcloud/lite-chat' -type d -exec cp -rf ./im-node-sdk-dist/* {} \\; 2>/dev/null; true",
"test": "pnpm build && node --test test/*.test.mjs"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"channel": {
"id": "timbot-ws",
"label": "Tencent IM",
"selectionLabel": "Tencent IM (timbot-ws)",
"detailLabel": "Tencent Cloud IM Bot (WebSocket)",
"docsPath": "/channels/timbot",
"docsLabel": "timbot-ws",
"blurb": "Tencent Cloud IM bot via WebSocket SDK. Zero-config deployment - no public IP needed.",
"aliases": [
"tencentim",
"腾讯im",
"即时通信"
],
"order": 85
},
"install": {
"npmSpec": "timbot-ws",
"localPath": "extensions/timbot-ws",
"defaultChoice": "npm"
}
},
"dependencies": {
"@tencentcloud/lite-chat": "^4.2.8",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.1.30"
},
"overrides": {
"axios": "1.14.0"
}
}