forked from NewFuture/openclaw-weixin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.25 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "openclaw-weixin",
"version": "3.1.1",
"description": "Community-maintained WeChat (Weixin) channel plugin for OpenClaw using the iLink bot API.",
"license": "MIT",
"author": "Tencent",
"contributors": [
"Contributors to NewFuture/openclaw-weixin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NewFuture/openclaw-weixin.git"
},
"homepage": "https://github.com/NewFuture/openclaw-weixin#readme",
"bugs": {
"url": "https://github.com/NewFuture/openclaw-weixin/issues"
},
"keywords": [
"openclaw",
"wechat",
"weixin",
"channel",
"plugin"
],
"type": "module",
"files": [
"index.ts",
"openclaw.plugin.json",
"dist/",
"docs/",
"README.md",
"README_EN.md",
"README.zh_CN.md",
"CHANGELOG.md",
"CHANGELOG_EN.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"test": "npm run test:coverage",
"test:unit": "vitest run --coverage=false",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --project tsconfig.test.json --noEmit",
"lint": "biome lint . --error-on-warnings",
"format": "biome check . --write",
"format:check": "biome format .",
"check:style": "biome check . --error-on-warnings",
"check:versions": "node scripts/check-versions.mjs",
"check:static": "npm run check:versions && npm run check:style && npm run typecheck && npm run typecheck:tests",
"check:fast": "npm run check:static && npm run test:unit",
"audit:all": "npm audit --audit-level=moderate",
"audit:deps": "npm audit --omit=dev --omit=peer --audit-level=moderate",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc",
"check": "npm run check:static && npm run test:coverage && npm run build",
"pack:check": "node scripts/check-package.mjs",
"prepack": "npm run build",
"prepublishOnly": "npm run check:static && npm test"
},
"engines": {
"node": ">=22.22.3 <23 || >=24.15.0 <25 || >=25.9.0"
},
"dependencies": {
"qrcode-terminal": "0.12.0"
},
"peerDependencies": {
"openclaw": ">=2026.6.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.7",
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"openclaw": "2026.7.1",
"silk-wasm": "^3.7.1",
"tar": "7.5.22",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"overrides": {
"openclaw@2026.7.1": {
"@hono/node-server": "2.1.0",
"tar": "7.5.22",
"undici": "8.9.0"
}
},
"openclaw": {
"compat": {
"pluginApi": ">=2026.6.1"
},
"build": {
"openclawVersion": "2026.7.1"
},
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"channel": {
"id": "openclaw-weixin",
"label": "WeChat",
"selectionLabel": "WeChat",
"docsPath": "/channels/openclaw-weixin",
"docsLabel": "WeChat",
"blurb": "Weixin channel",
"order": 75
},
"install": {
"npmSpec": "openclaw-weixin",
"defaultChoice": "npm",
"minHostVersion": ">=2026.6.1"
}
},
"ilink_appid": "bot",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}