-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
44
45
46
47
{
"name": "dk64-randomizer",
"main": "static/js/electron_gui.js",
"version": "0.0.0",
"author": "DK64Devs <[email protected]>",
"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": "static/img/dk.png",
"target": "deb"
},
"win": {
"target": "nsis",
"icon": "static/img/dk.png"
}
},
"dependencies": {
"node-static": "^0.7.11",
"nunjucks": "^3.2.4",
"purgecss": "^5.0.0"
},
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^24.9.1"
}
}