-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.03 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "wmux",
"productName": "wmux",
"version": "2.6.0",
"description": "cmux for Windows — run multiple AI CLI agents (Claude Code, Codex, Gemini) side-by-side with an MCP bridge and browser automation",
"private": true,
"main": ".vite/build/index.js",
"bin": {
"wmux": "dist/cli-bundle/index.js"
},
"scripts": {
"postinstall": "node scripts/fix-node-pty.js",
"start": "npm run build:daemon && npm run build:mcp && electron-forge start",
"package": "npm run build:daemon && npm run build:mcp && electron-forge package",
"make": "npm run build:daemon && npm run build:mcp && electron-forge make",
"lint": "eslint --ext .ts,.tsx .",
"build:daemon": "tsc -p tsconfig.daemon.json && esbuild dist/daemon/daemon/index.js --bundle --platform=node --outfile=dist/daemon-bundle/index.js --external:node-pty",
"build:cli": "tsc -p tsconfig.cli.json && esbuild dist/cli/cli/index.js --bundle --platform=node --outfile=dist/cli-bundle/index.js",
"build:mcp": "tsc -p tsconfig.mcp.json && node scripts/build-mcp.js",
"mcp": "node dist/mcp/mcp/index.js",
"test": "vitest run"
},
"keywords": [
"terminal",
"multiplexer",
"mcp",
"ai-agent",
"windows",
"electron"
],
"author": {
"name": "openwong2kim",
"email": "100856670+openwong2kim@users.noreply.github.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openwong2kim/wmux.git"
},
"homepage": "https://github.com/openwong2kim/wmux#readme",
"bugs": {
"url": "https://github.com/openwong2kim/wmux/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.27",
"electron": "41.0.3",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vitest": "^4.1.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"electron-squirrel-startup": "^1.0.1",
"immer": "^11.1.4",
"node-pty": "^1.1.0",
"playwright-core": "^1.58.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-resizable-panels": "^4.7.3",
"zod": "^4.3.6",
"zustand": "^5.0.12"
}
}