@blockrun/clawrouter 0.10.8 → 0.10.9
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/package.json +22 -22
- package/scripts/reinstall.sh +0 -0
- package/scripts/update.sh +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockrun/clawrouter",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.9",
|
|
4
4
|
"description": "Smart LLM router — save 92% on inference costs. 41+ models, one wallet, x402 micropayments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,6 +24,26 @@
|
|
|
24
24
|
"scripts",
|
|
25
25
|
"openclaw.plugin.json"
|
|
26
26
|
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsup",
|
|
29
|
+
"dev": "tsup --watch",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"test:watch": "vitest",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"lint": "eslint src/",
|
|
34
|
+
"format": "prettier --write .",
|
|
35
|
+
"format:check": "prettier --check .",
|
|
36
|
+
"test:resilience:errors": "tsx test/resilience-errors.ts",
|
|
37
|
+
"test:resilience:stability": "DURATION_MINUTES=5 tsx test/resilience-stability.ts",
|
|
38
|
+
"test:resilience:stability:full": "DURATION_MINUTES=240 tsx test/resilience-stability.ts",
|
|
39
|
+
"test:resilience:lifecycle": "tsx test/resilience-lifecycle.ts",
|
|
40
|
+
"test:resilience:quick": "npm run test:resilience:errors && npm run test:resilience:lifecycle",
|
|
41
|
+
"test:resilience:full": "npm run test:resilience:errors && npm run test:resilience:lifecycle && npm run test:resilience:stability:full",
|
|
42
|
+
"test:e2e:tool-ids": "tsx test/e2e-tool-id-sanitization.ts",
|
|
43
|
+
"test:docker:install": "bash test/run-docker-test.sh",
|
|
44
|
+
"test:docker:edge-cases": "bash test/docker/run-edge-cases.sh",
|
|
45
|
+
"test:docker:integration": "docker compose -f test/integration/docker-compose.yml up --build --abort-on-container-exit --exit-code-from integration"
|
|
46
|
+
},
|
|
27
47
|
"keywords": [
|
|
28
48
|
"llm",
|
|
29
49
|
"router",
|
|
@@ -71,25 +91,5 @@
|
|
|
71
91
|
},
|
|
72
92
|
"engines": {
|
|
73
93
|
"node": ">=20"
|
|
74
|
-
},
|
|
75
|
-
"scripts": {
|
|
76
|
-
"build": "tsup",
|
|
77
|
-
"dev": "tsup --watch",
|
|
78
|
-
"test": "vitest run",
|
|
79
|
-
"test:watch": "vitest",
|
|
80
|
-
"typecheck": "tsc --noEmit",
|
|
81
|
-
"lint": "eslint src/",
|
|
82
|
-
"format": "prettier --write .",
|
|
83
|
-
"format:check": "prettier --check .",
|
|
84
|
-
"test:resilience:errors": "tsx test/resilience-errors.ts",
|
|
85
|
-
"test:resilience:stability": "DURATION_MINUTES=5 tsx test/resilience-stability.ts",
|
|
86
|
-
"test:resilience:stability:full": "DURATION_MINUTES=240 tsx test/resilience-stability.ts",
|
|
87
|
-
"test:resilience:lifecycle": "tsx test/resilience-lifecycle.ts",
|
|
88
|
-
"test:resilience:quick": "npm run test:resilience:errors && npm run test:resilience:lifecycle",
|
|
89
|
-
"test:resilience:full": "npm run test:resilience:errors && npm run test:resilience:lifecycle && npm run test:resilience:stability:full",
|
|
90
|
-
"test:e2e:tool-ids": "tsx test/e2e-tool-id-sanitization.ts",
|
|
91
|
-
"test:docker:install": "bash test/run-docker-test.sh",
|
|
92
|
-
"test:docker:edge-cases": "bash test/docker/run-edge-cases.sh",
|
|
93
|
-
"test:docker:integration": "docker compose -f test/integration/docker-compose.yml up --build --abort-on-container-exit --exit-code-from integration"
|
|
94
94
|
}
|
|
95
|
-
}
|
|
95
|
+
}
|
package/scripts/reinstall.sh
CHANGED
|
File without changes
|
package/scripts/update.sh
CHANGED
|
File without changes
|