-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 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
{
"name": "timbot",
"version": "2026.3.19",
"type": "module",
"description": "OpenClaw Tencent Cloud IM intelligent bot channel plugin",
"author": "longyuqi@tencent.com",
"license": "MIT",
"homepage": "https://github.com/wbxl2000/timbot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wbxl2000/timbot.git"
},
"bugs": {
"url": "https://github.com/wbxl2000/timbot/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"openclaw.plugin.json"
],
"keywords": [
"openclaw",
"openclaw-plugin",
"tencent-im",
"timbot",
"chatbot"
],
"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/",
"test": "pnpm build && node --test test/*.test.mjs"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"channel": {
"id": "timbot",
"label": "Tencent IM",
"selectionLabel": "Tencent IM (timbot)",
"detailLabel": "Tencent Cloud IM Bot",
"docsPath": "/channels/timbot",
"docsLabel": "timbot",
"blurb": "Tencent Cloud IM bot via webhooks + REST API.",
"aliases": [
"tencentim",
"腾讯im",
"即时通信"
],
"order": 85
},
"install": {
"npmSpec": "timbot",
"localPath": "extensions/timbot",
"defaultChoice": "npm"
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.1.30"
}
}