-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 2.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "saeae",
"productName": "Saeae",
"version": "1.4.0",
"author": {
"name": "Fraasi",
"email": "[email protected]",
"url": "https://github.com/fraasi"
},
"description": "Weather app in your tray",
"main": "src/main.js",
"private": true,
"license": "MIT",
"homepage": "https://github.com/fraasi/saeae",
"bugs": "https://github.com/fraasi/saeae/issues",
"repository": {
"type": "git",
"url": "https://github.com/fraasi/saeae.git"
},
"keywords": [
"sää",
"saeae",
"electron",
"weather",
"app",
"tray",
"temperature",
"sun",
"moon"
],
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "eslint src --color",
"start": "electron .",
"pack": "electron-builder --dir",
"predist": "rm -rf ./dist",
"dist": "electron-builder"
},
"dependencies": {
"custom-electron-titlebar": "^3.2.6",
"electron-context-menu": "^2.4.0",
"electron-debug": "^3.2.0",
"electron-log": "^4.3.1",
"electron-prompt": "^1.6.1",
"electron-store": "^7.0.0",
"electron-traywindow-positioner": "^1.1.0",
"electron-updater": "^4.3.5",
"electron-util": "^0.14.2",
"futility": "github:fraasi/futility",
"node-fetch": "^2.6.1",
"suncalc": "^1.8.0"
},
"devDependencies": {
"electron": "^11.2.1",
"electron-builder": "^22.9.1",
"electron-reloader": "^1.2.0",
"eslint": "^7.18.0"
},
"build": {
"appId": "fi.fraasi.saeae",
"copyright": "Copyright © 2021 Fraasi",
"files": [
"src/",
"env.js",
"node_modules/",
"package.json"
],
"directories": {
"output": "dist",
"buildResources": "./resources"
},
"publish": [
{
"provider": "github",
"releaseType": "prerelease",
"publishAutoUpdate": true
}
],
"win": {
"icon": "resources/images/fraasi-256x256.png",
"target": [
{
"target": "portable",
"arch": [
"x64"
]
},
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"portable": {
"artifactName": "${productName}-v${version}-${os}-${arch}-portable.${ext}",
"splashImage": "resources/images/splashimage-256x256.bmp"
},
"nsis": {
"artifactName": "${productName}-v${version}-${os}-${arch}-setup.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true
},
"linux": {
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
"icon": "resources/images/fraasi-256x256.png",
"target": [
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"category": "Utility",
"synopsis": "Weather app in your tray"
}
}
}