-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.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
{
"name": "openclawwechat",
"version": "1.3.2",
"description": "OpenClawWeChat - OpenClaw WeChat MiniProgram channel plugin",
"keywords": [
"openclaw",
"plugin",
"wechat",
"miniprogram",
"channel",
"telegram-bot-api"
],
"license": "MIT",
"author": "OpenClaw Plugin Development",
"repository": {
"type": "git",
"url": "https://github.com/hillghost86/OpenClawWeChat.git"
},
"bugs": {
"url": "https://github.com/hillghost86/OpenClawWeChat/issues"
},
"homepage": "https://github.com/hillghost86/OpenClawWeChat#readme",
"type": "module",
"main": "index.ts",
"files": [
"index.ts",
"setup-entry.ts",
"src/**/*.ts",
"scripts/**/*.js",
"openclaw.plugin.json",
"README.md",
"CHANGELOG.md",
"CONFIG.md",
"CONFIG-INIT.md",
"EXAMPLE.md",
"TESTING.md",
"images/**/*"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"pack": "npm pack --dry-run",
"publish:public": "npm publish --access public",
"publish:beta": "npm publish --access public --tag beta",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"config-init": "node scripts/config-init.js",
"uninstall": "node scripts/uninstall.js"
},
"devDependencies": {
"openclaw": "workspace:*",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "openclawwechat",
"label": "OpenClawWeChat",
"selectionLabel": "OpenClawWeChat(微信小程序 ClawChat )",
"blurb": "通过ClawChat微信小程序,与OpenClaw进行双向通讯。",
"docsPath": "/channels/openclawwechat",
"docsLabel": "openclawwechat",
"systemImage": "bubble.left.and.text.bubble.right",
"aliases": [
"wechat",
"miniprogram",
"wx"
]
},
"install": {
"npmSpec": "openclawwechat",
"localPath": "extensions/OpenClawWeChat",
"defaultChoice": "npm",
"minHostVersion": ">=2026.3.24"
}
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}