-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 KB
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
{
"name": "BG-launcher",
"version": "1.1.0",
"description": "BG-launcher",
"main": "main.js",
"scripts": {
"start": "electron .",
"build-win": "electron-builder --win --ia32 -p never",
"deploy-win": "electron-builder --win --ia32 -p always",
"build-linux": "electron-builder --linux --x64",
"build-mac": "electron-builder --mac --x64"
},
"repository": "https://github.com/bfitzgit23/BG-Launcher",
"homepage": "https://swghunted.online",
"keywords": [
"hunted",
"launcher",
"installer",
"swg",
"star",
"wars",
"galaxies",
"emulator",
"emu",
"swgemu"
],
"author": "BG_Dev",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^25.2.0",
"electron-builder": "^25.1.8"
},
"dependencies": {
"axios": "^1.7.9",
"fs-extra": "^11.3.0",
"@electron/remote": "^2.0.9",
"adm-zip": "^0.5.10",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.8",
"electron-updater": "^6.3.9",
"follow-redirects": "^1.15.2",
"random-access-file": "^1.8.1",
"request": "^2.88.2"
},
"build": {
"appId": "com.bg.launcher",
"productName": "BG Launcher",
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}