-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "openclaw-worktool",
"version": "0.2.0",
"description": "OpenClaw WorkTool channel plugin for WeChat webhook/RPA bridge integration.",
"type": "module",
"files": [
"index.js",
"openclaw.plugin.json",
"src/*.js",
"README.md",
"CHANGELOG.md",
"DEPLOYMENT.md",
"LICENSE",
"docs/"
],
"engines": {
"node": ">=22"
},
"scripts": {
"clean": "rm -rf dist",
"build": "node scripts/build.mjs",
"pack": "npm pack ./dist/package --pack-destination ./dist",
"verify:pack": "node scripts/verify-pack.mjs",
"release:local": "npm run build && npm run pack && npm run verify:pack",
"release": "node scripts/release.mjs"
},
"openclaw": {
"extensions": ["./index.js"],
"channel": {
"id": "worktool",
"label": "WorkTool",
"selectionLabel": "WorkTool Bridge",
"docsPath": "/channels/worktool",
"docsLabel": "worktool",
"blurb": "Bridge outbound replies to a WorkTool middleware endpoint",
"order": 96
},
"install": {
"npmSpec": "openclaw-worktool",
"localPath": "extensions/worktool",
"defaultChoice": "local"
}
}
}