@dhfpub/clawpool 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +123 -0
- package/dist/index.js +2654 -0
- package/openclaw.plugin.json +11 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dhfpub/clawpool",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "OpenClaw channel plugin for ClawPool",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"openclaw",
|
|
12
|
+
"plugin",
|
|
13
|
+
"channel",
|
|
14
|
+
"clawpool",
|
|
15
|
+
"dhfpub"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/askie/aibot.git",
|
|
21
|
+
"directory": "openclaw_plugins/clawpool"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/askie/aibot/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/askie/aibot/tree/main/openclaw_plugins/clawpool#readme",
|
|
27
|
+
"files": [
|
|
28
|
+
"LICENSE",
|
|
29
|
+
"README.md",
|
|
30
|
+
"openclaw.plugin.json",
|
|
31
|
+
"dist/index.js"
|
|
32
|
+
],
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public",
|
|
35
|
+
"registry": "https://registry.npmjs.org/"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"clean": "node -e \"const fs=require('node:fs'); fs.rmSync('dist', { recursive: true, force: true });\"",
|
|
39
|
+
"build": "npm run clean && esbuild index.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/index.js --external:openclaw --external:openclaw/*",
|
|
40
|
+
"pack:dry-run": "npm run build && npm pack --dry-run --ignore-scripts",
|
|
41
|
+
"prepack": "npm run build",
|
|
42
|
+
"test": "node --test src/*.test.ts"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"esbuild": "0.27.4"
|
|
46
|
+
},
|
|
47
|
+
"openclaw": {
|
|
48
|
+
"extensions": [
|
|
49
|
+
"./dist/index.js"
|
|
50
|
+
],
|
|
51
|
+
"channel": {
|
|
52
|
+
"id": "clawpool",
|
|
53
|
+
"label": "Clawpool",
|
|
54
|
+
"selectionLabel": "Clawpool",
|
|
55
|
+
"blurb": "Bridge OpenClaw to Clawpool over the Aibot Agent API WebSocket.",
|
|
56
|
+
"aliases": [
|
|
57
|
+
"cp",
|
|
58
|
+
"clowpool"
|
|
59
|
+
],
|
|
60
|
+
"order": 90
|
|
61
|
+
},
|
|
62
|
+
"install": {
|
|
63
|
+
"npmSpec": "@dhfpub/clawpool",
|
|
64
|
+
"localPath": "openclaw_plugins/clawpool",
|
|
65
|
+
"defaultChoice": "npm"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|