This repository has been archived by the owner on May 6, 2023. It is now read-only.
forked from bhopahk/launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.41 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "proton",
"version": "0.3.5",
"description": "A custom minecraft launcher",
"private": false,
"author": "Matt Worzala <bhop.me>",
"license": "MIT",
"main": "public/gateway.js",
"homepage": "./",
"scripts": {
"start": "concurrently \"cross-env BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
"postinstall": "electron-builder install-app-deps",
"dev": "react-scripts start",
"build": "react-scripts build",
"package": "electron-builder --dir",
"dist": "react-scripts build && build --x64 --win --c.extraMetadata.main=build/gateway.js -p always",
"test": "mocha \"test/**/*.js\""
},
"dependencies": {
"discord-rpc": "^3.0.2",
"electron-is-dev": "^1.1.0",
"electron-log": "^3.0.5",
"electron-updater": "^4.0.6",
"follow-redirects": "^1.7.0",
"fs-extra": "^7.0.1",
"getos": "^3.1.1",
"nedb": "^1.8.0",
"node-fetch": "^2.6.0",
"node-stream-zip": "^1.8.0",
"path-is-inside": "^1.0.2",
"react": "^16.8.6",
"react-contextmenu": "^2.11.0",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"react-tooltip": "^3.10.0",
"sanitize-filename": "^1.6.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"electron": "^5.0.0",
"electron-builder": "^20.39.0",
"electron-devtools-installer": "^2.2.4",
"mocha": "^6.1.4",
"react-scripts": "3.0.0",
"typescript": "^3.4.5",
"wait-on": "^3.3.0"
},
"build": {
"appId": "me.bhop.proton",
"productName": "Proton Launcher",
"files": [
"build/**/*",
"node_modules/**/*",
"./public/gateway.js",
"./public/index.html",
"./public/icon.png",
"src/**",
"*.js"
],
"protocols": [
{
"name": "Proton Launcher",
"schemes": [
"proton"
]
}
],
"extends": null,
"directories": {
"buildResources": "assets"
},
"win": {
"target": "nsis",
"icon": "./build/icon.png"
},
"nsis": {
"oneClick": true,
"perMachine": false
},
"linux": {
"target": "tar.gz",
"icon": "./build/icon.png"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}