-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.04 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 4.04 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "claude-code-desktop",
"version": "0.5.0",
"description": "Fan-made Electron desktop UI for the Claude Code CLI — 202-tool ccm MCP (browser control + agent-team Director + cross-LLM media: Imagen/Veo via Gemini + ChatGPT bridge), multi-pane parallel control, live context panel, permission modes, JSX preview, workspace awareness",
"author": {
"name": "hlsitechio",
"email": "23203953+hlsitechio@users.noreply.github.com"
},
"homepage": "https://github.com/hlsitechio/Claude-Code-Mods",
"repository": {
"type": "git",
"url": "https://github.com/hlsitechio/Claude-Code-Mods.git"
},
"keywords": [
"claude-code",
"claude-code-plugin",
"claude-code-cli",
"claude-code-skills",
"anthropic",
"mcp",
"electron",
"desktop",
"agentic-coding",
"dockview",
"skills",
"hooks",
"ai-coding-assistant"
],
"private": true,
"main": "electron/main.js",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "npm run electron:dev",
"dev": "vite --port 5182",
"build": "vite build",
"preview": "vite preview --port 5183",
"electron:dev": "concurrently -k -n VITE,ELECTRON -c cyan,magenta \"npm run dev\" \"wait-on http://localhost:5182 && electron .\"",
"electron:slot2": "electron . --slot=2",
"electron:slot3": "electron . --slot=3",
"electron:slot4": "electron . --slot=4",
"electron:build": "npm run build && electron-builder",
"dist": "npm run build && electron-builder --x64",
"dist:dir": "npm run build && electron-builder --x64 --dir",
"dist:linux": "npm run build && electron-builder --linux --x64",
"dist:win": "npm run build && electron-builder --win --x64",
"lint": "node -c electron/main.js && node -c electron/chrome-controller.js && node -c electron/browser-http-server.js && node -c electron/preload.js && node -c electron/cli-session-tracker.js && node -c electron/director.js && node -c electron/media.js && node -c app.js && node -c workspace.js && node --check bin/browser-mcp.mjs && echo \"lint: syntax-check OK\"",
"test": "echo \"No automated test suite yet. Run 'npm run lint' for syntax checks.\" && exit 0",
"setup:win": "pwsh -ExecutionPolicy Bypass -File setup.ps1"
},
"devDependencies": {
"autoprefixer": "^10.5.0",
"concurrently": "^9.1.2",
"electron": "^42.2.0",
"electron-builder": "^26.8.1",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.19",
"vite": "^8.0.13",
"wait-on": "^8.0.3"
},
"build": {
"appId": "dev.hlsitechio.claude-code-desktop",
"productName": "Claude Code",
"copyright": "Fan-made UI redesign — not affiliated with Anthropic",
"asar": true,
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"extraResources": [],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"artifactName": "ClaudeCode-Setup-${version}.${ext}"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"category": "Development",
"artifactName": "ClaudeCode-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Claude Code",
"installerHeaderIcon": "",
"deleteAppDataOnUninstall": false
},
"publish": null
},
"dependencies": {
"@anthropic-ai/sdk": "^0.97.1",
"@google/genai": "^2.10.0",
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
"dockview-core": "^5.2.0",
"node-pty": "^1.1.0",
"puppeteer-core": "^25.0.4",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
}
}