forked from Heroic-Games-Launcher/HeroicGamesLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) · 5.64 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "heroic",
"version": "2.15.2",
"versionNames": {
"stable": "Emeth",
"beta": "Caesar Clown"
},
"private": false,
"main": "build/main/main.js",
"homepage": "./",
"license": "GPL-3.0-only",
"description": "An Open Source Launcher for GOG, Epic Games and Amazon Games",
"repository": {
"type": "Github",
"url": "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher"
},
"author": {
"name": "Heroic Games Launcher",
"email": "[email protected]"
},
"engines": {
"node": ">= 16"
},
"scripts": {
"start": "electron-vite dev --watch",
"debug:react": "pnpm start & react-devtools",
"codecheck": "tsc --noEmit",
"find-deadcode": "ts-prune --error",
"test": "jest",
"test-watch": "jest --watch --maxWorkers=25%",
"test:ci": "jest --runInBand --silent",
"test:e2e": "electron-vite build && cross-env CI=e2e xvfb-maybe -- playwright test",
"release:linux": "electron-vite build && electron-builder -p always --linux deb AppImage rpm pacman tar.xz",
"release:mac": "electron-vite build && electron-builder -p always --mac --x64 --arm64",
"release:win": "electron-vite build && electron-builder -p always --win portable --x64",
"release:updateFlathub:ci": "tsc flathub/update-flathub.ts --skipLibCheck --target es2015 --moduleResolution node --module commonjs && node flathub/update-flathub.js",
"sign:win": "electron-vite build && electron-builder -p never --win nsis --x64",
"dist:linux": "electron-vite build && electron-builder --linux",
"dist:mac": "export CSC_IDENTITY_AUTO_DISCOVERY=false && electron-vite build && electron-builder --mac",
"dist:win": "electron-vite build && electron-builder --win",
"dist:flatpak": "pnpm dist:linux appimage && pnpm flatpak:prepare && pnpm flatpak:build",
"lint": "eslint --cache .",
"lint-fix": "eslint --fix --ext .tsx,ts ./src",
"flatpak:build": "cd flatpak-build && flatpak-builder build com.heroicgameslauncher.hgl.yml --install --force-clean --user",
"flatpak:prepare": "node ./flatpak/prepareFlatpak.js",
"flatpak:prepare-release": "node ./flatpak/prepareFlatpak.js release",
"i18n": "i18next --silent",
"prepare": "husky install",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"download-helper-binaries": "esbuild --bundle --platform=node --target=node21 meta/downloadHelperBinaries.ts | node"
},
"dependencies": {
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@fontsource/cabin": "4.5.10",
"@fontsource/rubik": "4.5.14",
"@fortawesome/fontawesome-svg-core": "6.3.0",
"@fortawesome/free-brands-svg-icons": "6.3.0",
"@fortawesome/free-regular-svg-icons": "6.3.0",
"@fortawesome/free-solid-svg-icons": "6.3.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@mui/icons-material": "5.11.11",
"@mui/material": "5.11.12",
"@node-steam/vdf": "2.2.0",
"@shockpkg/icon-encoder": "2.1.3",
"axios": "0.26.1",
"classnames": "2.3.1",
"compare-versions": "6.1.0",
"crc": "4.3.2",
"discord-rich-presence-typescript": "0.0.8",
"easydl": "1.1.0",
"electron-store": "8.0.1",
"electron-updater": "6.2.1",
"filesize": "10.0.6",
"font-list": "1.4.5",
"fs-extra": "11.1.0",
"fuse.js": "6.6.2",
"graceful-fs": "4.2.10",
"i18next": "22.4.11",
"i18next-fs-backend": "2.1.1",
"i18next-http-backend": "2.1.1",
"ini": "3.0.0",
"json5": "2.2.3",
"plist": "3.0.5",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.2.0",
"react-i18next": "12.2.0",
"react-markdown": "8.0.5",
"react-router-dom": "6.9.0",
"recharts": "2.4.3",
"sanitize-filename": "1.6.3",
"sanitize-html": "^2.11.0",
"semver": "7.5.2",
"shlex": "2.1.2",
"short-uuid": "4.2.2",
"simple-keyboard": "3.5.33",
"source-map-support": "^0.5.21",
"steam-shortcut-editor": "3.1.3",
"tslib": "2.5.0",
"xvfb-maybe": "^0.2.1",
"zod": "3.22.3",
"zustand": "^4.4.7"
},
"devDependencies": {
"@electron/notarize": "^2.3.2",
"@eslint/js": "^9.7.0",
"@playwright/test": "1.42.1",
"@testing-library/dom": "9.0.1",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.1.1",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/graceful-fs": "^4.1.9",
"@types/i18next-fs-backend": "1.1.4",
"@types/ini": "1.3.31",
"@types/jest": "29.4.0",
"@types/node": "20.14.14",
"@types/plist": "3.0.2",
"@types/react": "18.3.3",
"@types/react-beautiful-dnd": "13.1.4",
"@types/react-dom": "18.2.14",
"@types/react-router-dom": "5.3.3",
"@types/sanitize-html": "2.9.0",
"@types/semver": "^7.5.8",
"@types/source-map-support": "^0.5.10",
"@types/tmp": "0.2.3",
"@vitejs/plugin-react-swc": "3.6.0",
"cross-env": "7.0.3",
"electron": "31.3.1",
"electron-builder": "24.13.3",
"electron-vite": "^2.0.0",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import-x": "^3.1.0",
"eslint-plugin-react": "7.35.0",
"fast-xml-parser": "^4.3.6",
"husky": "8.0.3",
"i18next-parser": "7.7.0",
"jest": "29.5.0",
"node-gyp": "^10.0.1",
"prettier": "3.0.3",
"react-devtools": "^5.0.2",
"sass": "1.59.2",
"tmp": "0.2.1",
"ts-jest": "29.0.5",
"ts-prune": "0.10.3",
"type-fest": "3.6.1",
"typed-emitter": "^2.1.0",
"typescript": "4.9.4",
"typescript-eslint": "^7.17.0",
"unimported": "1.26.0",
"vite": "5.2.8",
"vite-plugin-svgr": "4.2.0"
},
"resolutions": {
"ts-morph": "17.0.1"
}
}