-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.55 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
{
"name": "it-dashboard",
"version": "2.0.8",
"description": "Awesome IT Dashboard – multi-panel monitoring tool (Electron + vanilla JS)",
"author": "corgan2222",
"main": "main.js",
"scripts": {
"start": "electron .",
"prebuild": "node -e \"require('fs').writeFileSync('build-info.json', JSON.stringify({buildDate: new Date().toISOString()}))\"",
"prebuild:win": "node -e \"require('fs').writeFileSync('build-info.json', JSON.stringify({buildDate: new Date().toISOString()}))\"",
"prebuild:linux": "node -e \"require('fs').writeFileSync('build-info.json', JSON.stringify({buildDate: new Date().toISOString()}))\"",
"prebuild:mac": "node -e \"require('fs').writeFileSync('build-info.json', JSON.stringify({buildDate: new Date().toISOString()}))\"",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux",
"build:mac": "electron-builder --mac"
},
"dependencies": {
"split.js": "^1.6.5"
},
"devDependencies": {
"electron": "^40.8.5",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "com.knaakIT.dashboard",
"productName": "IT Dashboard",
"icon": "assets/icon_512.png",
"files": [
"main.js",
"preload.js",
"build-info.json",
"index.html",
"styles.css",
"renderer.js",
"assets/**",
"node_modules/split.js/dist/**"
],
"win": {
"target": [{ "target": "nsis", "arch": ["x64"] }]
},
"linux": {
"target": ["AppImage"]
},
"mac": {
"target": ["dmg"]
}
}
}