-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "hordes-client",
"productName": "Hordes.io",
"description": "Hordes.io Desktop Client",
"author": {
"name": "zbot473",
"url": "https://github.com/zbot473"
},
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "21.2.0",
"electron-packager": "^14.2.1",
"prettier": "^2.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/zbot473/hordes-client.git"
},
"dependencies": {
"discord-rpc": "^3.1.0",
"minimist": ">=1.2.5",
"electron-updater": "^4.2.5"
},
"scripts": {
"build": "electron-builder -mwl",
"publish": "electron-builder -mwl -p always",
"start": "electron ."
},
"build": {
"appId": "io.hordes.client",
"publish":["github"],
"mac": {
"category": "public.app-category.role-playing-games"
},
"linux": {
"category": "Game"
}
}
}