-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.03 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": "autotiler",
"version": "1.2.0",
"main": "main.js",
"private": true,
"scripts": {
"start": "electron .",
"dist": "electron-builder -mwl",
"postinstall": "electron-builder install-app-deps"
},
"author": "route1rodent <[email protected]>",
"homepage": "https://route1rodent.itch.io/autotiler",
"butler": {
"project": "route1rodent/autotiler"
},
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^22.8.0"
},
"dependencies": {
"electron-unhandled": "^3.0.2",
"open": "^7.1.0"
},
"build": {
"appId": "com.route1rodent.autotiler",
"productName": "Autotiler",
"copyright": "Copyright © 2020, ${author}",
"artifactName": "${name}-${os}.${ext}",
"directories": {
"buildResources": "img"
},
"files": [
"**/*",
"img/*"
],
"mac": {
"category": "public.app-category.graphics-design",
"target": "dmg"
},
"win": {
"target": "portable"
},
"linux": {
"target": "AppImage"
}
}
}