-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "installer",
"version": "1.0.5",
"description": "a installer to install Discord-Re-envisioned",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx electron-builder -mwl",
"dev": "npx electron ./"
},
"author": "doggybootsy",
"license": "MIT",
"devDependencies": {
"electron": "^17.0.1",
"electron-packager": "^13.1.1"
},
"build": {
"appId": "com.installer.app",
"artifactName": "${os}-installer-${version}.${ext}",
"productName": "Discord Re-envisioned - Installer",
"win": {
"target": "portable",
"icon": "./assets/icon.png"
},
"linux": {
"target": "AppImage",
"icon": "./assets/icon.png",
"category": "Utility"
},
"mac": {
"target": "zip",
"type": "distribution",
"category": "public.app-category.utilities",
"icon": "./assets/icon.icns"
},
"portable": {
"artifactName": "${os}-installer-${version}.${ext}"
}
},
"dependencies": {
"request": "^2.88.2"
}
}