clawmux 0.3.9 → 0.3.11
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 +9 -8
- package/clawmux.example.json +9 -3
- package/dist/cli.cjs +120538 -3468
- package/dist/index.cjs +120456 -3391
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clawmux",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"description": "Smart model routing + context compression proxy for OpenClaw",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"start:node": "node --import tsx src/index.ts",
|
|
23
23
|
"test": "bun test",
|
|
24
24
|
"typecheck": "tsc --noEmit",
|
|
25
|
-
"build": "bun build src/cli.ts --outfile dist/cli.cjs --target node --format cjs
|
|
25
|
+
"build": "bun build src/cli.ts --outfile dist/cli.cjs --target node --format cjs && bun build src/index.ts --outfile dist/index.cjs --target node --format cjs && node -e \"const fs=require('fs');const v=require('./package.json').version;for(const f of['dist/cli.cjs','dist/index.cjs']){fs.writeFileSync(f,fs.readFileSync(f,'utf-8').replace('__CLAWMUX_VERSION__',v))}\"",
|
|
26
26
|
"build:check": "node dist/cli.cjs version",
|
|
27
27
|
"prepublishOnly": "npm run typecheck && npm run build && npm run build:check"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@mariozechner/pi-ai": "^0.67.6"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/bun": "^1.3.11"
|