-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "The-Wall",
"version": "1.0.0",
"description": "An App that changes your Desktop wallpaper daily based on your followed tags and categories",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build -w"
},
"repository": "https://github.com/aakashbhadana/The-Wall",
"keywords": [
"electron",
"wallpaper",
"unsplash"
],
"author": "Aakash Bhadana",
"license": "MIT",
"devDependencies": {
"electron": "^5.0.6",
"electron-builder": "^20.44.4"
},
"dependencies": {
"electron-store": "^4.0.0",
"image-downloader": "^3.4.2",
"internet-available": "^1.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"wallpaper": "^4.4.1"
},
"build": {
"win": {
"target": [
{
"target": "nsis",
"arch": [
"ia32"
]
}
]
}
},
"compression": "store"
}