-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
56
57
{
"name": "Puddle",
"displayName": "Puddle",
"version": "0.1.3",
"description": "A web browser for full desktop apps.",
"author": "Cedric Kim <hello@cedric.today> (https://cedric.today/)",
"repository": "https://github.com/puddleapp/puddle",
"license": "MIT",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder build -mwl",
"dist-mac": "electron-builder build --mac",
"dist-windows": "electron-builder build --windows",
"dist-linux": "electron-builder build --linux",
"ship": "electron-builder build -mwl -p always",
"ship-mac": "electron-builder build --mac -p always",
"ship-windows": "electron-builder build --windows -p always",
"ship-linux": "electron-builder build --linux -p always",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"electron": "^8.2.5",
"electron-builder": "^21.2.0"
},
"dependencies": {
"update-electron-app": "^1.5.0"
},
"build": {
"appId": "today.cedric.puddle",
"productName": "Puddle",
"copyright": "© Cedric Kim",
"mac": {
"target": "dmg",
"category": "public.app-category.productivity",
"icon": "build/icon.icns"
},
"dmg": {
"title": "Puddle",
"icon": "build/icon.icns",
"window": {
"width": "540",
"height": "380"
}
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nsis": {
"uninstallDisplayName": "Puddle"
},
"linux": {
"target": "AppImage"
}
}
}