-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.17 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
{
"name": "rbows-1",
"version": "10.0.26220",
"description": "RBOWS 1 - Windows 10 desktop environment for RQBBOX OS",
"main": "electron-main.js",
"author": "RhysTech",
"license": "MIT",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build:exe": "build-exe.bat",
"build": "electron-builder --win --x64",
"build:dir": "electron-builder --win --x64 --dir"
},
"build": {
"appId": "com.rtech.rbows1",
"productName": "RBOWS 1",
"directories": {
"output": "dist"
},
"files": [
"index.html",
"electron-main.js",
"assets/**/*",
"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": "RBOWS 1"
}
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
}
}