-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "invokex",
"version": "2.1.0",
"description": "Modern GUI application for installing Windows applications and system tweaks",
"main": "main.js",
"author": "GoblinRules",
"license": "MIT",
"homepage": "https://github.com/GoblinRules/InvokeX",
"scripts": {
"dev": "electron .",
"build": "electron-builder",
"dist": "electron-builder --win"
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
},
"build": {
"appId": "com.goblinrules.invokex",
"productName": "InvokeX",
"win": {
"target": [
"portable",
"nsis"
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"portable": {
"artifactName": "InvokeX.exe"
},
"files": [
"main.js",
"preload.js",
"index.html",
"styles.css",
"renderer.js",
"assets/**"
]
}
}