-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 992 Bytes
/
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
{
"name": "unsplash-wallpaper",
"productName": "unsplash-wallpaper",
"description": "Set random wallpapers from UnSplash.",
"keywords": [
"unsplash",
"wallpaper",
"random"
],
"main": "./main.js",
"version": "1.2.1",
"author": "gaurav-nelson",
"scripts": {
"start": "electron .",
"release": "electron-builder",
"snap": "electron-builder --linux snap"
},
"dependencies": {
"wallpaper": "^4.4.2"
},
"devDependencies": {
"electron": "^11.0.4",
"electron-builder": "^22.14.5"
},
"build": {
"appId": "io.unsplash-wallpaper.app",
"publish": "github",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"appImage": {
"license": "LICENSE"
},
"nsis": {
"createDesktopShortcut": "always",
"license": "LICENSE"
}
}
}