-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1014 Bytes
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
{
"name": "rqbbox-os-1",
"version": "1.0.0",
"description": "RQBBOX OS 1 - The complete RQBBOX ecosystem",
"main": "electron-main.js",
"author": "RhysTech",
"license": "MIT",
"scripts": {
"start": "electron .",
"build": "electron-builder --win --x64",
"build:dir": "electron-builder --win --x64 --dir"
},
"build": {
"appId": "com.rtech.rqbbox-os-1",
"productName": "RQBBOX OS 1",
"directories": { "output": "dist" },
"files": ["index.html", "electron-main.js", "build/**/*"],
"win": {
"icon": "build/icon.ico",
"target": [
{ "target": "nsis", "arch": ["x64"] },
{ "target": "portable", "arch": ["x64"] }
]
},
"nsis": {
"oneClick": false, "perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true, "createStartMenuShortcut": true,
"shortcutName": "RQBBOX OS 1"
}
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
}
}