-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 948 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 948 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
37
38
39
40
41
42
{
"name": "penguinmod-desktop",
"productName": "PenguinMod Desktop",
"version": "0.1.1",
"description": "PenguinMod Desktop client for Windows.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win",
"release": "electron-builder --win --publish always"
},
"repository": "https://github.com/PenguinMod/PenguinMod-Desktop",
"build": {
"appId": "com.penguinmod.desktop",
"win": {
"icon": "logo.ico",
"target": [
"nsis",
"portable"
]
},
"publish": [
{
"provider": "github",
"owner": "PenguinMod",
"repo": "PenguinMod-Desktop"
}
]
},
"keywords": [],
"author": "Catpack6",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"electron-updater": "^6.8.3"
},
"devDependencies": {
"7zip-bin-win": "^2.2.0",
"electron": "^40.8.0",
"electron-builder": "^23.6.0"
}
}