-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "dk64-randomizer",
"main": "static/js/electron_gui.js",
"version": "0.0.0",
"author": "DK64Devs <devs@dk64randomizer.com>",
"scripts": {
"start": "npm install && electron .",
"pack": "electron-builder --dir --publish=never",
"dist": "electron-builder --publish=never",
"distall": "electron-builder -mwl --publish=never"
},
"build": {
"appId": "dk64randomizer",
"artifactName": "dk64randomizer.${ext}",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"icon": "base-hack/assets/DKTV/logo3.png",
"target": "deb"
},
"win": {
"target": "nsis",
"icon": "base-hack/assets/DKTV/logo3.png"
}
},
"dependencies": {
"node-static": "^0.7.11",
"nunjucks": "^3.2.4",
"purgecss": "^8.0.0"
},
"devDependencies": {
"electron": "^40.1.0",
"electron-builder": "^26.0.12"
}
}