-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.7 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
{
"name": "@bytepioneer-ai/weixin-agent-gateway",
"version": "1.0.6",
"description": "OpenClaw Weixin channel",
"license": "MIT",
"author": "Tencent",
"type": "module",
"bin": {
"weixin-agent-gateway": "cli.mjs"
},
"files": [
"src/",
"!src/**/*.test.ts",
"!src/**/node_modules/",
"cli.mjs",
"index.ts",
"openclaw.plugin.json",
"README.md",
"README.zh_CN.md",
"CHANGELOG.md",
"CHANGELOG.zh_CN.md"
],
"scripts": {
"test": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"build": "tsc",
"local:setup": "node cli.mjs install-local",
"weixin-agent-gateway:setup": "node cli.mjs install-local",
"prepublishOnly": "npm run typecheck && npm run build",
"publish:npm": "node ./scripts/publish-npm.mjs"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.16.1",
"qrcode-terminal": "0.12.0",
"zod": "4.3.6"
},
"peerDependencies": {
"openclaw": ">=2026.3.22"
},
"devDependencies": {
"@types/node": "^22.19.15",
"@vitest/coverage-v8": "^3.1.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "weixin-agent-gateway",
"label": "weixin-agent-gateway",
"selectionLabel": "weixin-agent-gateway",
"docsPath": "/channels/weixin-agent-gateway",
"docsLabel": "weixin-agent-gateway",
"blurb": "Weixin agent gateway channel",
"order": 75
},
"install": {
"npmSpec": "@bytepioneer-ai/weixin-agent-gateway",
"defaultChoice": "npm",
"minHostVersion": ">=2026.3.22"
}
},
"publishConfig": {
"access": "public"
}
}