numux 2.10.3 → 2.11.0
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/README.md +122 -61
- package/dist/man/numux.1 +1127 -0
- package/dist/numux.js +668 -130
- package/dist/utils/color.d.ts +1 -1
- package/package.json +6 -3
package/dist/utils/color.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ import type { ProcessStatus, ResolvedNumuxConfig } from '../types';
|
|
|
30
30
|
/** ANSI color codes for process statuses */
|
|
31
31
|
export declare const STATUS_ANSI: Partial<Record<ProcessStatus, string>>;
|
|
32
32
|
export declare const ANSI_RESET = "\u001B[0m";
|
|
33
|
-
/** Strip ANSI escape sequences from text */
|
|
33
|
+
/** Strip ANSI escape sequences from text (SIMD-accelerated via Bun) */
|
|
34
34
|
export declare function stripAnsi(str: string): string;
|
|
35
35
|
/** Pick a deterministic color from the default palette based on the process name */
|
|
36
36
|
export declare function colorFromName(name: string): Color;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "numux",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"description": "Terminal multiplexer with dependency orchestration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"bin": {
|
|
24
24
|
"numux": "dist/bin.js"
|
|
25
25
|
},
|
|
26
|
+
"man": "dist/man/numux.1",
|
|
26
27
|
"exports": {
|
|
27
28
|
".": {
|
|
28
29
|
"types": "./dist/config.d.ts",
|
|
@@ -30,8 +31,9 @@
|
|
|
30
31
|
}
|
|
31
32
|
},
|
|
32
33
|
"scripts": {
|
|
34
|
+
"docs": "bun scripts/generate-docs.ts",
|
|
33
35
|
"build": "bun run build.ts",
|
|
34
|
-
"prepublishOnly": "bun run build",
|
|
36
|
+
"prepublishOnly": "bun run docs && bun run build",
|
|
35
37
|
"dev": "cd example && bun run dev --debug",
|
|
36
38
|
"test": "bun test",
|
|
37
39
|
"typecheck": "bunx tsc --noEmit",
|
|
@@ -50,7 +52,8 @@
|
|
|
50
52
|
"@biomejs/biome": "^2.4.4",
|
|
51
53
|
"@commitlint/cli": "^20.4.2",
|
|
52
54
|
"@commitlint/config-conventional": "^20.4.2",
|
|
53
|
-
"@types/bun": "^1.3.9"
|
|
55
|
+
"@types/bun": "^1.3.9",
|
|
56
|
+
"marked-man": "^2.1.0"
|
|
54
57
|
},
|
|
55
58
|
"patchedDependencies": {
|
|
56
59
|
"ghostty-opentui@1.4.7": "patches/ghostty-opentui@1.4.7.patch"
|