-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.3 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 4.3 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "codemux",
"version": "1.7.1",
"type": "module",
"description": "A unified AI coding assistant client - access multiple AI coding engines from any device via desktop app or web interface",
"author": "realDuang",
"repository": {
"type": "git",
"url": "https://github.com/realDuang/codemux.git"
},
"main": "out/main/index.mjs",
"scripts": {
"dev": "electron-vite dev",
"dev:isolated": "cross-env CODEMUX_DEV_ISOLATED=1 bun scripts/dev-isolated.ts",
"build": "electron-vite build",
"preview": "electron-vite preview",
"pack": "electron-builder --dir",
"dist": "bun scripts/predist.ts && electron-vite build && electron-builder --publish never",
"dist:mac": "bun scripts/predist.ts && electron-vite build && electron-builder --mac --publish never",
"dist:mac:arm64": "TARGET_ARCH=arm64 bun scripts/predist.ts && electron-vite build && electron-builder --mac --arm64 --publish never",
"dist:mac:x64": "TARGET_ARCH=x64 bun scripts/predist.ts && electron-vite build && electron-builder --mac --x64 --publish never",
"dist:win": "bun scripts/predist.ts && electron-vite build && electron-builder --win --publish never",
"typecheck": "tsc --noEmit",
"setup": "bun scripts/setup.ts",
"start": "bun scripts/start.ts",
"server:init": "bash ./scripts/server-init.sh",
"server:dev": "bash ./scripts/server-dev.sh start --foreground",
"server:dev:isolated": "cross-env CODEMUX_DEV_ISOLATED=1 bun scripts/dev-isolated.ts --server",
"server:up": "bash ./scripts/server-dev.sh start --replace",
"server:tunnel": "bash ./scripts/server-dev.sh start --replace --tunnel",
"server:down": "bash ./scripts/server-dev.sh stop",
"server:status": "bash ./scripts/server-dev.sh status",
"server:restart": "bash ./scripts/server-dev.sh restart",
"server:access-code": "bun scripts/server-auth.ts access-code",
"server:access-requests": "bun scripts/server-auth.ts access-requests",
"update:cloudflared": "bun scripts/update-cloudflared.ts",
"test:web-api": "bun scripts/test-web-api.ts",
"restart": "bun scripts/restart.ts",
"test:unit": "vitest run",
"test:e2e": "electron-vite build && playwright test",
"test": "vitest run && playwright test",
"bench": "vitest bench",
"bench:micro": "vitest bench tests/benchmark/micro/",
"bench:e2e:server": "npx tsx tests/benchmark/e2e/run-e2e-benchmark.ts",
"bench:check": "npx tsx scripts/bench-regression.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.137",
"@github/copilot-sdk": "1.0.0",
"@larksuiteoapi/node-sdk": "^1.42.0",
"@opencode-ai/sdk": "^1.14.41",
"@parcel/watcher": "^2.5.1",
"@shikijs/transformers": "^1.22.0",
"@solid-primitives/i18n": "^2.2.1",
"@solidjs/router": "^0.14.10",
"@tanstack/solid-virtual": "^3.13.19",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"diff": "^5.1.0",
"electron-log": "^5.4.3",
"electron-updater": "^6.8.3",
"lang-map": "^0.4.0",
"luxon": "^3.4.0",
"marked": "^11.1.0",
"marked-shiki": "^1.1.2",
"material-icon-theme": "^5.32.0",
"node-pty": "^1.1.0",
"qrcode": "^1.5.4",
"shell-env": "^4.0.3",
"shiki": "^1.22.0",
"solid-js": "^1.8.0",
"vscode-languageserver-types": "^3.17.5",
"ws": "^8.19.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.0.0",
"@types/diff": "^5.0.9",
"@types/luxon": "^3.4.0",
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "4.0.18",
"bun-types": "latest",
"cross-env": "^10.1.0",
"electron": "^40.6.1",
"electron-builder": "^26.0.0",
"electron-vite": "^3.1.0",
"eslint": "^10.1.0",
"eslint-plugin-solid": "^0.14.5",
"tailwindcss": "^4.0.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.57.2",
"vite": "^6.4.2",
"vite-plugin-icons-spritesheet": "^3.0.1",
"vite-plugin-solid": "^2.10.0",
"vitest": "^4.0.18"
},
"overrides": {
"node-gyp": "^12.1.0"
}
}