@openplan/dsh-fuse 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/dist/connect.js +0 -0
  2. package/package.json +3 -3
package/dist/connect.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openplan/dsh-fuse",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Cost policy for the DeepSeek Harness: per-call metering plus a local fuse that enforces budget, model and reasoning-effort limits before any token is spent.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -34,7 +34,7 @@
34
34
  "cordis"
35
35
  ],
36
36
  "scripts": {
37
- "build": "tsc -p tsconfig.build.json",
37
+ "build": "tsc -p tsconfig.build.json && chmod +x dist/connect.js",
38
38
  "typecheck": "tsc --noEmit",
39
39
  "test": "vitest run",
40
40
  "prepublishOnly": "pnpm build"
@@ -62,6 +62,6 @@
62
62
  "vitest": "^3.1.0"
63
63
  },
64
64
  "bin": {
65
- "dsh-fuse-connect": "./dist/connect.js"
65
+ "dsh-fuse-connect": "dist/connect.js"
66
66
  }
67
67
  }