numux 1.5.1 → 1.5.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.
Files changed (3) hide show
  1. package/dist/bin.js +20 -2608
  2. package/dist/numux.js +2610 -0
  3. package/package.json +3 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "numux",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Terminal multiplexer with dependency orchestration",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -18,8 +18,7 @@
18
18
  "orchestration"
19
19
  ],
20
20
  "engines": {
21
- "bun": ">=1.0",
22
- "node": ">=18"
21
+ "bun": ">=1.0"
23
22
  },
24
23
  "bin": {
25
24
  "numux": "dist/bin.js"
@@ -31,7 +30,7 @@
31
30
  }
32
31
  },
33
32
  "scripts": {
34
- "build": "bun build src/index.ts --outfile dist/bin.js --target bun --packages external && bun build src/config.ts --outfile dist/config.js --packages external && bunx tsc src/config.ts src/types.ts --emitDeclarationOnly --declaration --outDir dist --target ESNext --module ESNext --moduleResolution bundler",
33
+ "build": "bun build src/index.ts --outfile dist/numux.js --target bun --packages external && bun build src/config.ts --outfile dist/config.js --packages external && bunx tsc src/config.ts src/types.ts --emitDeclarationOnly --declaration --outDir dist --target ESNext --module ESNext --moduleResolution bundler && cp src/bin-wrapper.js dist/bin.js",
35
34
  "prepublishOnly": "bun run build",
36
35
  "dev": "cd example && bun run dev --debug",
37
36
  "test": "bun test",