-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.09 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
81
82
83
84
85
86
87
88
89
90
{
"name": "clawbnb-hub",
"version": "2026.3.28",
"description": "ClawBNB Hub OpenClaw plugin with Weixin channel, rental relay, and proxy provider",
"keywords": [
"clawbnb",
"hub",
"openclaw",
"plugin",
"proxy",
"relay",
"rental",
"weixin"
],
"homepage": "https://github.com/ImGoodBai/clawbnb-hub#readme",
"bugs": {
"url": "https://github.com/ImGoodBai/clawbnb-hub/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ImGoodBai/clawbnb-hub.git"
},
"files": [
"README.md",
"index.ts",
"openclaw.plugin.json",
"src/",
"!src/**/*.test.ts",
"!src/**/node_modules/"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --noEmit",
"prepublishOnly": "npm run test:gate",
"test": "vitest run --coverage",
"test:gate": "npm run typecheck && npm run test:unit && npm run test:smoke && npm pack --dry-run --cache ./.npm-cache",
"test:smoke": "vitest run tests/smoke",
"test:unit": "vitest run src/*.test.ts tests/unit",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mariozechner/pi-agent-core": "0.58.0",
"@mariozechner/pi-ai": "0.60.0",
"qrcode-terminal": "0.12.0",
"ws": "^8.19.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"
},
"peerDependencies": {
"openclaw": ">=2026.3.22"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"engines": {
"node": ">=22.16.0"
},
"ilink_appid": "bot",
"openclaw": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "clawbnb-weixin",
"label": "clawbnb-weixin",
"selectionLabel": "clawbnb-weixin",
"docsPath": "/channels/clawbnb-weixin",
"docsLabel": "clawbnb-weixin",
"blurb": "Weixin channel",
"order": 75
},
"install": {
"minHostVersion": ">=2026.3.22"
},
"release": {
"publishToNpm": false
}
}
}