-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.67 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": "LandOfTheRairDesktop",
"productName": "Land of the Rair",
"version": "1.1.1",
"description": "Play LandOfTheRair on your desktop!",
"main": "src/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make"
},
"repository": "https://github.com/landoftherair/desktop",
"author": "Kyle Kemp <[email protected]>",
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"electron-forge": "^5.2.2",
"electron-prebuilt-compile": "3.0.6"
},
"dependencies": {
"discord-rpc": "^3.0.1",
"electron-compile": "^6.4.2",
"electron-config": "^1.0.0",
"electron-debug": "^1.5.0",
"electron-squirrel-startup": "^1.0.0",
"lodash.startcase": "^4.4.0"
},
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "npm",
"appname": "Land of the Rair",
"icon": "./favicon.ico",
"electronVersion": "3.0.6",
"asar": true
},
"electronWinstallerConfig": {
"name": "LandOfTheRair",
"iconUrl": "https://play.rair.land/favicon.ico"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "landoftherair",
"name": "desktop"
},
"windowsStoreConfig": {
"packageName": "",
"name": "LandOfTheRair"
}
}
}
}