@cobusgreyling/loop-cost 1.0.0 → 1.0.1

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/cli.js +0 -0
  2. package/package.json +3 -3
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@cobusgreyling/loop-cost",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Estimate daily token spend for loop engineering patterns by cadence and readiness level.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "loop-cost": "./dist/cli.js"
7
+ "loop-cost": "dist/cli.js"
8
8
  },
9
9
  "files": [
10
10
  "dist",
@@ -13,7 +13,7 @@
13
13
  ],
14
14
  "scripts": {
15
15
  "bundle": "node scripts/bundle-registry.mjs",
16
- "build": "npm run bundle && tsc",
16
+ "build": "npm run bundle && tsc && chmod +x dist/cli.js",
17
17
  "test": "npm run build && node --test test/estimator.test.mjs",
18
18
  "prepublishOnly": "npm test",
19
19
  "start": "node dist/cli.js"