-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.33 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
{
"name": "claude-code-dashboard",
"version": "1.0.0",
"description": "Real-time dashboard for Claude Code sessions, chats, tasks and agents",
"author": "Bahtya",
"main": "electron/main.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"electron": "electron .",
"electron-dev": "set NODE_ENV=development&& electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"dist": "npm run build:win"
},
"build": {
"appId": "com.claudecode.dashboard",
"productName": "Claude Code Dashboard",
"directories": {
"output": "dist"
},
"files": [
"electron/**/*",
"server.js",
"public/**/*",
"package.json"
],
"win": {
"target": [
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico"
}
},
"dependencies": {
"chokidar": "^3.6.0",
"express": "^4.21.0",
"ws": "^8.18.0"
},
"devDependencies": {
"electron": "^30.5.1",
"electron-builder": "^26.7.0"
}
}