-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "apod-wallpaper",
"version": "1.0.0",
"description": "Astronomy Picture of the Day Wallpaper is a cross-platform desktop application that automatically changes your wallpaper to an amazing cosmic picture of the day ✨",
"main": "index.js",
"repository": "[email protected]:nicolasiensen/apod-wallpaper.git",
"author": "Nícolas Iensen",
"license": "MIT",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"test": "jest --watch"
},
"build": {
"productName": "APOD Wallpaper",
"appId": "com.nicolasiensen.apod-wallpaper",
"extraResources": [
"build/TrayIcon*",
".env"
],
"mac": {
"category": "public.app-category.utilities",
"extendInfo": {
"LSUIElement": 1
}
}
},
"postinstall": "electron-builder install-app-deps",
"devDependencies": {
"electron": "^2.0.0",
"electron-builder": "^20.4.1",
"jest": "^22.4.3"
},
"dependencies": {
"auto-launch": "^5.0.5",
"dotenv": "^5.0.1",
"download": "^7.0.0",
"nasa-sdk": "^1.1.10",
"wallpaper": "^3.0.0"
},
"jest": {
"clearMocks": true
}
}