openmux 0.1.40 → 0.1.41
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 +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmux",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.41",
|
|
4
4
|
"description": "Terminal multiplexer with master-stack tiling layout",
|
|
5
5
|
"module": "src/index.tsx",
|
|
6
6
|
"type": "module",
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
"prepare": "effect-language-service patch",
|
|
23
23
|
"test": "vitest run",
|
|
24
24
|
"test:watch": "vitest",
|
|
25
|
+
"check:circular": "bunx madge --circular --extensions ts,tsx src/",
|
|
26
|
+
"lint:effect": "effect-language-service diagnostics --format pretty --project ./tsconfig.json",
|
|
27
|
+
"lint": "bun run lint:effect",
|
|
25
28
|
"release": "standard-version",
|
|
26
29
|
"release:minor": "standard-version --release-as minor",
|
|
27
30
|
"release:major": "standard-version --release-as major",
|
|
@@ -52,10 +55,14 @@
|
|
|
52
55
|
"bun": ">=1.0.0"
|
|
53
56
|
},
|
|
54
57
|
"devDependencies": {
|
|
58
|
+
"@effect/eslint-plugin": "^0.3.2",
|
|
55
59
|
"@effect/language-service": "^0.60.0",
|
|
56
60
|
"@effect/vitest": "^0.27.0",
|
|
57
61
|
"@types/bun": "latest",
|
|
58
62
|
"@types/react": "^19.2.7",
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^8.50.0",
|
|
64
|
+
"@typescript-eslint/parser": "^8.50.0",
|
|
65
|
+
"eslint": "^9.39.2",
|
|
59
66
|
"standard-version": "^9.5.0",
|
|
60
67
|
"vitest": "^4.0.15"
|
|
61
68
|
},
|