openmux 0.1.38 → 0.1.39

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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@ A terminal multiplexer with master-stack layout (Zellij-style), built with:
4
4
 
5
5
  - **Bun** - Fast JavaScript runtime
6
6
  - **OpenTUI** - Terminal UI library with React reconciler
7
- - **bun-pty** - PTY support for Bun
7
+ - **zig-pty** - PTY support for Bun (pure Zig implementation)
8
8
  - **ghostty-web** - Terminal emulation via WASM
9
9
 
10
10
  ![openmux screenshot](assets/openmux-screenshot.png)
@@ -157,7 +157,7 @@ src/
157
157
 
158
158
  ├── terminal/ # PTY and terminal emulation
159
159
  │ ├── index.ts # Terminal exports
160
- │ ├── pty-manager.ts # PTY session lifecycle (bun-pty)
160
+ │ ├── pty-manager.ts # PTY session lifecycle (zig-pty)
161
161
  │ ├── ghostty-emulator.ts # Terminal emulator (ghostty-web WASM)
162
162
  │ ├── input-handler.ts # Key/mouse to escape sequence encoder
163
163
  │ ├── graphics-passthrough.ts # Kitty Graphics/Sixel protocol
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmux",
3
- "version": "0.1.38",
3
+ "version": "0.1.39",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",