openmux 0.2.134 → 0.3.1

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 +7 -12
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.1",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",
@@ -20,7 +20,6 @@
20
20
  "build:release": "./scripts/build.sh --release",
21
21
  "install:local": "./scripts/build.sh --install",
22
22
  "update:submodules": "./scripts/update-submodules.sh",
23
- "prepare": "effect-language-service patch",
24
23
  "test": "bun test && (cd native/zig-pty && zig build test --summary all) && (cd native/zig-git && zig build test --summary all) && bun run test:zig-ghostty-wrapper",
25
24
  "test:ts": "bun test",
26
25
  "test:pty": "cd native/zig-pty && zig build test --summary all",
@@ -30,9 +29,7 @@
30
29
  "test:ghostty-vt": "bun run test:zig-ghostty-wrapper",
31
30
  "test:watch": "bun test --watch",
32
31
  "check:circular": "bunx madge --circular --extensions ts,tsx src/",
33
- "lint:effect": "effect-language-service diagnostics --format pretty --project ./tsconfig.json",
34
- "lint:ts": "eslint src",
35
- "lint": "bun run lint:effect && bun run lint:ts",
32
+ "lint": "eslint src",
36
33
  "config:doc": "bun scripts/generate-config-doc.ts",
37
34
  "release": "standard-version",
38
35
  "release:minor": "standard-version --release-as minor",
@@ -65,24 +62,22 @@
65
62
  "bun": ">=1.0.0"
66
63
  },
67
64
  "devDependencies": {
68
- "@effect/eslint-plugin": "^0.3.2",
69
- "@effect/language-service": "^0.60.0",
70
65
  "@types/bun": "latest",
66
+ "@types/node": "^25.3.0",
71
67
  "@typescript-eslint/eslint-plugin": "^8.56.0",
72
68
  "@typescript-eslint/parser": "^8.56.0",
73
- "eslint": "^9.39.2",
69
+ "eslint": "^10.0.1",
74
70
  "standard-version": "^9.5.0"
75
71
  },
76
72
  "peerDependencies": {
77
73
  "typescript": "^5.9.3"
78
74
  },
79
75
  "dependencies": {
80
- "@effect/cli": "^0.72.1",
81
- "@effect/platform": "^0.93.8",
82
76
  "@iarna/toml": "^3.0.0",
83
77
  "@opentui/core": "^0.1.80",
84
78
  "@opentui/solid": "^0.1.80",
85
- "effect": "^3.19.18",
86
- "solid-js": "^1.9.11"
79
+ "errore": "^0.13.0",
80
+ "solid-js": "^1.9.11",
81
+ "zod": "^4.3.6"
87
82
  }
88
83
  }