-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.17 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
48
49
50
51
52
53
54
55
{
"name": "squoosh-desktop-app",
"version": "1.0.0",
"description": "Squoosh multiplatform desktop app working offline",
"author": "Matias Benedetto <[email protected]>",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"license": "Apache 2.0",
"devDependencies": {
"electron": "^5.0.6",
"electron-builder": "^20.44.4"
},
"build": {
"appId": "com.squoosh.app",
"productName": "Squoosh Desktop",
"extends": null,
"files": [
"main.js",
"icon-1024x1024.png",
"icon-256x256.png",
"*.js",
"build",
"node_modules",
"./build/**/*",
"./public/electron.js"
],
"win": {
"icon": "icon-1024x1024.png",
"target": [
"nsis",
"portable"
]
},
"linux": {
"category": "Graphics",
"target": [
"AppImage",
"deb"
],
"icon": "icon-256x256.png"
},
"mac":{
"icon": "icon-1024x1024.png",
"category": "public.app-category.graphics-design",
"type": "distribution",
"target": [
"dmg"
]
}
}
}