@pep/term-deck 1.0.13 → 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.
- package/bin/term-deck.js +14 -0
- package/bin/term-deck.ts +0 -0
- package/package.json +2 -2
package/bin/term-deck.js
ADDED
|
@@ -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
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pep/term-deck",
|
|
3
|
-
"version": "1.0.
|
|
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.
|
|
7
|
+
"term-deck": "./bin/term-deck.js"
|
|
8
8
|
},
|
|
9
9
|
"main": "src/index.ts",
|
|
10
10
|
"types": "src/index.ts",
|