@pep/term-deck 1.0.10 → 1.0.14

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,14 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * JavaScript wrapper for term-deck CLI
4
+ * Uses tsx to execute the TypeScript entry point
5
+ */
6
+
7
+ import { register } from 'node:module';
8
+ import { pathToFileURL } from 'node:url';
9
+
10
+ // Register tsx for TypeScript execution
11
+ register('tsx/esm', pathToFileURL('./'));
12
+
13
+ // Import and run the TypeScript CLI
14
+ await import('./term-deck.ts');
package/bin/term-deck.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env tsx
1
+ #!/usr/bin/env node
2
2
  /**
3
3
  * CLI Entry Point for term-deck
4
4
  *
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@pep/term-deck",
3
- "version": "1.0.10",
3
+ "version": "1.0.14",
4
4
  "description": "Terminal presentation tool with a cyberpunk aesthetic",
5
5
  "type": "module",
6
6
  "bin": {
7
- "term-deck": "./bin/term-deck.ts"
7
+ "term-deck": "./bin/term-deck.js"
8
8
  },
9
9
  "main": "src/index.ts",
10
10
  "types": "src/index.ts",
@@ -32,8 +32,8 @@
32
32
  "node": ">=18.0.0"
33
33
  },
34
34
  "files": [
35
- "bin/",
36
35
  "src/",
36
+ "bin/",
37
37
  "themes/",
38
38
  "examples/",
39
39
  "LICENSE",