-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.32 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
{
"name": "claude-libre",
"version": "1.2.6",
"description": "Claude Code session manager desktop app",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"rebuild": "electron-builder install-app-deps",
"pack": "electron-vite build && electron-builder --dir",
"dist": "electron-vite build && electron-builder"
},
"build": {
"appId": "com.claudedesktop.app",
"productName": "Claude Libre",
"files": [
"out/**/*",
"logo.png"
],
"extraResources": [
{
"from": "logo.png",
"to": "logo.png"
},
{
"from": "logo.ico",
"to": "logo.ico"
},
{
"from": "logo.icns",
"to": "logo.icns"
}
],
"win": {
"icon": "logo.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
}
]
},
"publish": {
"provider": "github",
"owner": "HenryMu",
"repo": "claude-libre"
},
"mac": {
"icon": "logo.icns",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.developer-tools"
},
"linux": {
"icon": "logo.png",
"target": "AppImage"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"chokidar": "^4.0.3",
"electron-log": "^5.4.3",
"electron-updater": "^6.8.3",
"i18next": "^26.0.4",
"i18next-browser-languagedetector": "^8.2.1",
"node-pty": "^1.2.0-beta.12",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^17.0.2",
"react-markdown": "^9.0.3"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^34.0.0",
"electron-builder": "^26.8.1",
"electron-vite": "^3.0.0",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5",
"typescript": "^5.7.0"
}
}