@dominusnode/openclaw-plugin 1.1.0 → 1.3.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/README.md +89 -67
- package/dist/plugin.d.ts +1 -1
- package/dist/plugin.js +1459 -74
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dominusnode/openclaw-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Dominus Node proxy plugin for OpenClaw — route web requests through rotating proxy networks",
|
|
5
5
|
"main": "dist/plugin.js",
|
|
6
6
|
"types": "dist/plugin.d.ts",
|
|
@@ -8,9 +8,11 @@
|
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|
|
11
|
+
"prepare": "npm run build",
|
|
11
12
|
"test": "vitest run"
|
|
12
13
|
},
|
|
13
14
|
"devDependencies": {
|
|
15
|
+
"@types/node": "^22.0.0",
|
|
14
16
|
"typescript": "^5.4.0",
|
|
15
17
|
"vitest": "^1.6.0"
|
|
16
18
|
},
|