openmux 0.3.0 → 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.
- package/package.json +4 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmux",
|
|
3
|
-
"version": "0.3.
|
|
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
|
|
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,26 +62,21 @@
|
|
|
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",
|
|
71
66
|
"@types/node": "^25.3.0",
|
|
72
67
|
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
73
68
|
"@typescript-eslint/parser": "^8.56.0",
|
|
74
|
-
"eslint": "^
|
|
69
|
+
"eslint": "^10.0.1",
|
|
75
70
|
"standard-version": "^9.5.0"
|
|
76
71
|
},
|
|
77
72
|
"peerDependencies": {
|
|
78
73
|
"typescript": "^5.9.3"
|
|
79
74
|
},
|
|
80
75
|
"dependencies": {
|
|
81
|
-
"@effect/cli": "^0.72.1",
|
|
82
|
-
"@effect/platform": "^0.93.8",
|
|
83
76
|
"@iarna/toml": "^3.0.0",
|
|
84
77
|
"@opentui/core": "^0.1.80",
|
|
85
78
|
"@opentui/solid": "^0.1.80",
|
|
86
|
-
"
|
|
87
|
-
"errore": "^0.12.0",
|
|
79
|
+
"errore": "^0.13.0",
|
|
88
80
|
"solid-js": "^1.9.11",
|
|
89
81
|
"zod": "^4.3.6"
|
|
90
82
|
}
|