-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.65 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.65 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": "@marshulll/openclaw-wecom",
"version": "0.1.41",
"type": "module",
"description": "OpenClaw WeCom channel plugin (intelligent bot + internal app)",
"author": "OpenClaw",
"main": "wecom/index.ts",
"scripts": {
"check:imports": "node scripts/check-imports.mjs",
"check": "npm run check:imports",
"postinstall": "node scripts/postinstall.mjs",
"upgrade": "node scripts/upgrade.mjs"
},
"openclaw": {
"extensions": [
"./wecom/index.ts"
],
"channel": {
"id": "wecom",
"label": "WeCom",
"selectionLabel": "WeCom (plugin)",
"detailLabel": "WeCom",
"docsPath": "/channels/wecom",
"docsLabel": "wecom",
"blurb": "Enterprise WeCom: bot API + internal app (dual mode).",
"aliases": [
"wechatwork",
"wework",
"qywx",
"企微",
"企业微信"
],
"order": 85
},
"install": {
"npmSpec": "@marshulll/openclaw-wecom",
"localPath": ".",
"defaultChoice": "npm"
}
},
"peerDependencies": {
"openclaw": ">=2026.1.25"
},
"dependencies": {
"fast-xml-parser": "^4.3.6",
"zod": "^3.23.8"
},
"bundledDependencies": [
"fast-xml-parser",
"zod"
],
"keywords": [
"openclaw",
"wecom",
"wechat-work",
"channel",
"plugin"
],
"license": "MIT",
"files": [
"wecom/**",
"scripts/**",
"docs/TECHNICAL.md",
"docs/TESTING.md",
"docs/wecom.config.example.json",
"docs/wecom.config.full.example.jsonc",
"openclaw.plugin.json",
"README.md",
"README.zh.md",
"README.en.md"
],
"bundleDependencies": [
"fast-xml-parser",
"zod"
]
}