This repository has been archived by the owner on Jun 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
{
"name": "ao-web-app",
"private": true,
"version": "1.6.0",
"description": "Website application for Arendelle Odyssey",
"main": "app.js",
"scripts": {
"start": "electron . --no-sandbox",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish": "electron-builder -p always"
},
"build": {
"appId": "com.arendelleodyssey.webapp",
"productName": "Arendelle Odyssey (Web App)",
"copyright": "${author}",
"artifactName": "${name}-setup-${version}.${ext}",
"publish": [
{
"provider": "github",
"owner": "ArendelleOdyssey",
"repo": "web-app"
}
],
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon.png",
"darkModeSupport": true,
"target": "dmg",
"publish": [
"github"
]
},
"win": {
"publisherName": "${author} - Arendelle Odyssey",
"icon": "build/icon.png",
"publish": [
"github"
]
},
"linux": {
"target": "AppImage",
"category": "Utility",
"icon": "build/icon.png",
"publish": [
"github"
]
}
},
"author": {
"name": "Greep",
"email": "[email protected]",
"url": "https://greep.cf/"
},
"license": "none",
"devDependencies": {
"electron": "^10.3.0",
"electron-builder": "^22.11.7"
},
"dependencies": {
"@treverix/custom-electron-titlebar": "^4.1.7",
"@treverix/remote": "^0.1.1",
"electron-updater": "^4.3.9",
"ping": "^0.3.0"
}
}