-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "discord-hypesquad-manager",
"version": "1.0.0",
"description": "A modern web application that lets you easily manage your Discord HypeSquad badges.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/efekrbas/discord-hypesquad-manager.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"build": {
"appId": "com.efekrbas.discordhypesquadmanager",
"productName": "Discord HypeSquad Manager",
"directories": {
"output": "dist"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "images/logo.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Discord HypeSquad Manager"
}
},
"devDependencies": {
"electron": "^40.4.1",
"electron-builder": "^24.13.3"
}
}