-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.47 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
{
"name": "moniteur-app",
"version": "1.0.0",
"author": {
"name": "AUEB CSLab",
"email": "[email protected]"
},
"scripts": {
"build:linux": "electron-builder --linux",
"build:win": "electron-builder --windows",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"publish:linux": "electron-builder --publish onTag --linux",
"publish:win": "electron-builder --publish onTag --windows"
},
"main": "electron/main.js",
"dependencies": {
"electron-updater": "^4.3.1",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"electron": "^9.0.5",
"electron-builder": "^22.7.0"
},
"build": {
"appId": "org.aueb.moniteur",
"nsis": {
"oneClick": false,
"artifactName": "${productName}-Setup-v${version}.${ext}"
},
"linux": {
"target": {
"target": "AppImage",
"arch": [
"armv7l",
"x64"
]
},
"artifactName": "${productName}-${arch}-v${version}.${ext}"
},
"dmg": {
"artifactName": "${productName}-Setup-v${version}.${ext}"
},
"extraFiles": [
{
"from": "config/config.example.yml",
"to": "config.yml"
}
],
"publish": [
{
"provider": "github",
"releaseType": "release"
}
]
},
"homepage": "https://cslab.aueb.gr",
"repository": {
"type": "git",
"url": "https://github.com/aueb-cslabs/moniteur-electron.git"
}
}