openmux 0.2.134 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -92,6 +92,8 @@ Examples:
92
92
  openmux session list --json
93
93
  openmux session create dev
94
94
  openmux attach --session dev
95
+ openmux update
96
+ openmux update --yes
95
97
  openmux pane split --direction vertical --workspace 2
96
98
  openmux pane send --pane focused --text "npm test\n"
97
99
  openmux pane capture --pane focused --lines 200 --format ansi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmux",
3
- "version": "0.2.134",
3
+ "version": "0.3.0",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",
@@ -68,6 +68,7 @@
68
68
  "@effect/eslint-plugin": "^0.3.2",
69
69
  "@effect/language-service": "^0.60.0",
70
70
  "@types/bun": "latest",
71
+ "@types/node": "^25.3.0",
71
72
  "@typescript-eslint/eslint-plugin": "^8.56.0",
72
73
  "@typescript-eslint/parser": "^8.56.0",
73
74
  "eslint": "^9.39.2",
@@ -83,6 +84,8 @@
83
84
  "@opentui/core": "^0.1.80",
84
85
  "@opentui/solid": "^0.1.80",
85
86
  "effect": "^3.19.18",
86
- "solid-js": "^1.9.11"
87
+ "errore": "^0.12.0",
88
+ "solid-js": "^1.9.11",
89
+ "zod": "^4.3.6"
87
90
  }
88
91
  }