-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.79 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.79 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
77
78
79
{
"name": "@yaoyuanchao/dingtalk",
"version": "1.6.0",
"type": "module",
"description": "DingTalk channel plugin for ClawdBot/OpenClaw with Stream Mode support",
"license": "MIT",
"author": "Yao Yuanchao",
"keywords": [
"clawdbot",
"openclaw",
"dingtalk",
"channel-plugin",
"stream-mode",
"ai-assistant"
],
"clawdbot": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "dingtalk",
"label": "DingTalk",
"selectionLabel": "DingTalk (钉钉)",
"detailLabel": "DingTalk Stream Mode",
"docsPath": "/channels/dingtalk",
"docsLabel": "dingtalk",
"blurb": "DingTalk bot via Stream Mode (WebSocket) - No public domain required",
"aliases": [
"dingding",
"dd"
],
"order": 75,
"quickstartAllowFrom": true
},
"install": {
"npmSpec": "@yaoyuanchao/dingtalk",
"localPath": ".",
"defaultChoice": "npm"
}
},
"openclaw": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "dingtalk",
"label": "DingTalk",
"selectionLabel": "DingTalk (钉钉)",
"detailLabel": "DingTalk Stream Mode",
"docsPath": "/channels/dingtalk",
"docsLabel": "dingtalk",
"blurb": "DingTalk bot via Stream Mode (WebSocket) - No public domain required",
"aliases": [
"dingding",
"dd"
],
"order": 75,
"quickstartAllowFrom": true
},
"install": {
"npmSpec": "@yaoyuanchao/dingtalk",
"localPath": ".",
"defaultChoice": "npm"
}
},
"dependencies": {
"dingtalk-stream": "^2.1.4",
"zod": "^4.3.6"
},
"files": [
"index.ts",
"src/**/*.ts",
"clawdbot.plugin.json",
"openclaw.plugin.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}