thincoder 0.8.1 → 0.8.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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // CommonJS shim — npm 12 may reject ESM bin entries.
3
+ // This is a tiny CJS wrapper that delegates to the real .mjs entry point.
4
+ import("./thincoder.mjs")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thincoder",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
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.js"
17
+ "thincoder": "bin/thincoder.cjs"
18
18
  },
19
19
  "engines": {
20
20
  "node": ">=24"