-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.26 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
{
"name": "@canghe/openclaw-wechat",
"version": "0.1.0",
"type": "module",
"description": "OpenClaw WeChat channel plugin via Proxy API",
"license": "MIT",
"files": [
"index.ts",
"src",
"openclaw.plugin.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/woniu/openclaw-wechat.git"
},
"keywords": [
"openclaw",
"wechat",
"微信",
"chatbot",
"ai",
"claude"
],
"openclaw": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "wechat",
"label": "WeChat",
"selectionLabel": "WeChat (微信)",
"docsPath": "/channels/wechat",
"docsLabel": "wechat",
"blurb": "WeChat channel via Proxy API. 购买 API Key 请联系客服",
"order": 80
},
"install": {
"npmSpec": "@canghe/openclaw-wechat",
"localPath": ".",
"defaultChoice": "npm"
}
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.10.0",
"openclaw": ">=2026.2.9",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"zod": "^3.22.4"
},
"peerDependencies": {
"openclaw": ">=2026.2.9"
},
"scripts": {
"test": "npx tsx test-channel.ts",
"test:plugin": "npx tsx test-plugin.ts",
"typecheck": "tsc --noEmit"
}
}