thincoder 0.8.0 → 0.8.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/bin/thincoder.js +4 -0
  2. package/package.json +2 -2
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // Thin shim — npm's "bin" field doesn't accept .mjs entries.
3
+ // Delegates to the real entry point.
4
+ import "./thincoder.mjs"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thincoder",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Thin coding agent - zero dependencies, no build step, Node.js native. Sharp code, zero bloat.",
5
5
  "keywords": [
6
6
  "ai",
@@ -14,7 +14,7 @@
14
14
  ],
15
15
  "type": "module",
16
16
  "bin": {
17
- "thincoder": "./bin/thincoder.mjs"
17
+ "thincoder": "./bin/thincoder.js"
18
18
  },
19
19
  "engines": {
20
20
  "node": ">=24"