-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (96 loc) · 2.75 KB
/
package.json
File metadata and controls
97 lines (96 loc) · 2.75 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
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
{
"name": "multigames-studio-launcher",
"version": "3.8.10",
"description": "MultiGames Studios Launcher - Your simple and efficient gaming launcher",
"author": "MultiGames Studio <noreply@multigames-studio.fr>",
"license": "MIT",
"homepage": "https://github.com/Multigames-Studio-fr/Multigames-studio-lancheur/",
"bugs": {
"url": "https://github.com/Multigames-Studio-fr/Multigames-studio-lancheur/issues"
},
"private": true,
"main": "index.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"dist": "electron-builder build",
"dist:win": "npm run dist -- -w",
"dist:mac": "npm run dist -- -m",
"dist:linux": "npm run dist -- -l",
"dist:deb": "electron-builder build --linux deb",
"lint": "eslint --config .eslintrc.json .",
"build-css": "tailwindcss -i ./app/assets/css/tailwind.css -o ./app/assets/css/tailwind-compiled.css",
"watch-css": "tailwindcss -i ./app/assets/css/tailwind.css -o ./app/assets/css/tailwind-compiled.css --watch",
"create-icon": "node create-icon.mjs",
"postinstall": "node scripts/patch-helios-core.js"
},
"engines": {
"node": "20.x.x"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"adm-zip": "^0.5.9",
"sql.js": "^1.8.0",
"discord-rpc-patch": "^4.0.1",
"ejs": "^3.1.9",
"ejs-electron": "^3.0.0",
"electron-log": "^5.4.3",
"electron-updater": "^6.1.8",
"fs-extra": "^11.1.1",
"github-syntax-dark": "^0.5.0",
"got": "^11.8.5",
"helios-core": "^2.2.3",
"helios-distribution-types": "^1.3.0",
"jquery": "^3.7.1",
"lodash.merge": "^4.6.2",
"semver": "^7.6.0",
"toml": "^3.0.0"
},
"optionalDependencies": {
"dompurify": "^3.3.1"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.14",
"autoprefixer": "^10.4.21",
"electron": "^29.1.0",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"png-to-ico": "^3.0.1",
"postcss": "^8.5.6",
"tailwindcss": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wiltark/MGS-next-launcher"
},
"build": {
"productName": "MultiGames Studio Launcher",
"publish": [
{
"provider": "github",
"owner": "Multigames-Studio-fr",
"repo": "MGS-next-launcher"
}
],
"linux": {
"category": "Game"
},
"win": {
"target": [
"nsis"
],
"artifactName": "${name}-Setup.${ext}"
},
"nsis": {
"artifactName": "${name}-Setup.${ext}",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"license": "EULA.md",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"runAfterFinish": true,
"include": "build/installer.nsh"
}
}
}