-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 KB
/
package.json
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
{
"name": "QubesDashboard",
"version": "0.1.4",
"description": "A Graphical Dashboard for the common management of Qubes 4.0",
"license": "MIT",
"author": {
"name": "Joeviocoe",
"email": "[email protected]"
},
"main": "main.js",
"repository": "https://github.com/Joeviocoe/QubesDashboard",
"keywords": [
"Qubes",
"Dashboard",
"management",
"manager"
],
"devDependencies": {
"electron": "^1.8.2",
"electron-builder": "^20.1.1"
},
"dependencies": {
"electron-prompt": "^0.5.0",
"jquery": "^3.3.1",
"jsplumb": "^2.6.8",
"spectrum-colorpicker": "^1.8.0"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "com.electron.qubesdashboard",
"productName": "QubesDashboard",
"copyright": "Copyright © 2018 Joeviocoe",
"extraResources": "imgfiles",
"linux": {
"description": "A Graphical Dashboard for the common management of Qubes 4.0",
"category": "Utility",
"icon": "build/icons/",
"target": ["rpm"]
}
}
}