-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 3.6 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
134
{
"name": "claude-code-pro",
"version": "0.3.0-rc.10",
"description": "A multi-workspace desktop client for Claude Code CLI — file tree, parallel terminals, drag-and-drop file paths",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leverageaiapp/claude-code-pro.git"
},
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build:sidecar": "bash native/tsnet-sidecar/build-all.sh",
"build:sidecar:current": "bash native/tsnet-sidecar/build-all.sh --current",
"build": "npm run build:sidecar:current && tsc && vite build",
"build:full": "npm run build:sidecar && tsc && vite build",
"preview": "vite preview",
"postinstall": "electron-builder install-app-deps && node scripts/copy-excalidraw-fonts.js",
"rebuild:pty": "electron-rebuild -f -w node-pty",
"rebuild:native": "electron-rebuild -f",
"dist": "npm run build:full && electron-builder",
"dist:mac": "npm run build:full && electron-builder --mac",
"dist:win": "npm run build:full && electron-builder --win",
"dist:linux": "npm run build:full && electron-builder --linux"
},
"build": {
"appId": "app.leverageai.claude-code-pro",
"productName": "Claude Code Pro",
"directories": {
"output": "release/${version}"
},
"files": [
"dist",
"dist-electron",
"package.json"
],
"asarUnpack": [
"node_modules/node-pty/**",
"node_modules/cloudflared/**"
],
"extraResources": [
{
"from": "native/tsnet-sidecar/build/${os}-${arch}/",
"to": "tsnet-sidecar/${os}-${arch}/",
"filter": [
"**/*"
]
}
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
],
"category": "public.app-category.developer-tools",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"identity": null,
"binaries": [
"Contents/Resources/tsnet-sidecar/mac-arm64/tsnet-sidecar"
]
},
"dmg": {
"writeUpdateInfo": false
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"category": "Development"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@excalidraw/excalidraw": "^0.18.1",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^5.5.0",
"cloudflared": "^0.7.1",
"express": "^4.21.2",
"highlight.js": "^11.11.1",
"lucide-react": "^0.511.0",
"monaco-editor": "^0.52.2",
"node-pty": "^1.0.0",
"qrcode": "^1.5.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"socks-proxy-agent": "^10.0.0",
"ws": "^8.18.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@electron/rebuild": "^3.7.2",
"@types/express": "^4.17.21",
"@types/node": "^22.15.3",
"@types/qrcode": "^1.5.5",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"electron": "^35.2.1",
"electron-builder": "^26.0.12",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-electron": "^0.29.1",
"vite-plugin-electron-renderer": "^0.14.6"
}
}