-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.77 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
{
"name": "jw-launcher",
"version": "23.10.0",
"description": "JW Launcher",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/sircharlo/jw-launcher.git"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"@fortawesome/fontawesome-free": "^6.5.2",
"@popperjs/core": "^2.11.2",
"axios": "^1.6.8",
"bootstrap": "^5.3.3",
"bootstrap-dark-5": "^1.1.3",
"electron-updater": "^6.1.8",
"graceful-fs": "^4.2.9",
"inputmask": "^5.0.7",
"jquery": "^3.6.0",
"loudness": "^0.4.1",
"os": "^0.1.2",
"path": "^0.12.7",
"power-control": "^1.0.0",
"select2": "^4.1.0-rc.0"
},
"build": {
"appId": "sircharlo.jw-launcher",
"productName": "JW Launcher",
"win": {
"target": "NSIS",
"icon": "build/icon.ico",
"publish": [
"github"
]
},
"linux": {
"category": "Utilities",
"target": "AppImage",
"icon": "build/icon.png",
"publish": [
"github"
]
},
"mac": {
"target": {
"target": "dmg",
"arch": [
"universal"
]
},
"publish": [
"github"
]
},
"buildDependenciesFromSource": true
},
"devDependencies": {
"electron": "^27.1.3",
"electron-builder": "^24.13.3"
},
"scripts": {
"start": "electron .",
"pack-win": "electron-builder --win",
"pack-win-test": "electron-builder --dir --win",
"pack-linux-test": "electron-builder --dir --linux",
"pack-linux": "electron-builder --linux",
"publish": "electron-builder --win -p always",
"publish-linux": "electron-builder --linux -p always",
"postinstall": "electron-builder install-app-deps",
"release": "electron-builder"
},
"author": "",
"license": "ISC"
}