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
76 lines (76 loc) · 1.8 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
{
"name": "ao-desktop",
"private": true,
"version": "0.0.2-pre",
"description": "Arendelle Odyssey application",
"main": "src/index.js",
"scripts": {
"test": "eslint src/.",
"start": "electron . --no-sandbox -d",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArendelleOdyssey/desktop-app.git"
},
"build": {
"appId": "com.arendelleodyssey.app",
"productName": "Arendelle Odyssey",
"copyright": "${author}",
"artifactName": "${name}-setup-${version}.${ext}",
"publish": [
{
"provider": "github",
"owner": "ArendelleOdyssey",
"repo": "desktop-app"
}
],
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon.png",
"darkModeSupport": true,
"target": "dmg",
"publish": [
"github"
]
},
"win": {
"publisherName": "${author}",
"icon": "build/icon.png",
"publish": [
"github"
]
},
"linux": {
"target": "snap",
"category": "Utility",
"icon": "build/icon.png",
"publish": [
"github"
]
}
},
"author": {
"name": "Arendelle Odyssey",
"email": "[email protected]",
"url": "https://arendelleodyssey.com/"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ArendelleOdyssey/desktop-app/issues"
},
"homepage": "https://github.com/ArendelleOdyssey/desktop-app#readme",
"dependencies": {
"about-window": "^1.13.4",
"custom-electron-titlebar": "^3.2.6",
"electron-log": "^4.3.1",
"electron-updater": "^4.3.5",
"ping": "^0.4.0"
},
"devDependencies": {
"eslint": "^7.18.0",
"electron": "^10.3.0",
"electron-builder": "^22.9.1"
}
}