-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.92 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.92 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
80
{
"name": "weclawbot-ex",
"version": "2026.3.24",
"description": "WeClawBot-ex OpenClaw Weixin demo plugin fork with local web console",
"license": "MIT",
"author": "MoltHuman",
"homepage": "https://github.com/ImGoodBai/WeClawBot-ex",
"repository": {
"type": "git",
"url": "git+https://github.com/ImGoodBai/WeClawBot-ex.git"
},
"type": "module",
"files": [
"src/",
"!src/**/*.test.ts",
"!src/**/node_modules/",
"docs/",
"index.ts",
"openclaw.plugin.json",
"README.md",
"README.zh_CN.md",
"CHANGELOG.md",
"CHANGELOG.zh_CN.md",
"NOTICE"
],
"scripts": {
"test": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:smoke": "vitest run tests/smoke",
"test:gate": "npm run test:unit && npm run test:smoke && npm pack --dry-run --cache ./.npm-cache",
"test:gate:full": "npm run typecheck && npm run test:gate",
"typecheck": "tsc --noEmit",
"build": "tsc",
"prepublishOnly": "npm run test:gate"
},
"engines": {
"node": ">=22"
},
"peerDependencies": {
"openclaw": ">=2026.3.12"
},
"dependencies": {
"qrcode-terminal": "0.12.0",
"zod": "4.3.6"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.1.0",
"openclaw": "file:./tests/stubs/openclaw",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"release": {
"publishToNpm": true
},
"channel": {
"id": "openclaw-weixin",
"label": "openclaw-weixin",
"selectionLabel": "openclaw-weixin",
"docsPath": "/channels/openclaw-weixin",
"docsLabel": "openclaw-weixin",
"blurb": "Weixin channel",
"order": 75
},
"install": {
"npmSpec": "weclawbot-ex",
"defaultChoice": "npm"
}
},
"upstream": {
"package": "@tencent-weixin/openclaw-weixin",
"version": "1.0.2"
},
"publishConfig": {
"access": "public"
}
}