forked from margorski/exodos-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 4.28 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
{
"name": "exogui",
"version": "1.1.8",
"description": "A desktop application used to browse, manage and play games from eXoDOS collection. Based on BlueMaxima's Flashpoint launcher.",
"main": "build/main/index.js",
"repository": {
"type": "git",
"url": "https://github.com/margorski/exodos-launcher.git"
},
"config": {
"installed": false
},
"scripts": {
"start": "npx electron ./build/main/index.js",
"build": "npx gulp build",
"watch": "npx gulp watch",
"pack": "npx gulp pack",
"test": "npx jest",
"lint": "npx eslint ./src/**/*.{ts,tsx} ./tests/**/*.ts ./gulpfile.js",
"pack:linux": "npx cross-env PACK_PLATFORM=linux PACK_ARCH=x64 npx gulp pack",
"pack:win32": "npx cross-env PACK_PLATFORM=win32 PACK_ARCH=ia32 npx gulp pack",
"pack:darwin": "npx cross-env PACK_PLATFORM=darwin PACK_ARCH=x64 npx gulp pack",
"pack:m1": "npx cross-env PACK_PLATFORM=darwin PACK_ARCH=arm64 npx gulp pack",
"pack:all": "npx cross-env PACK_PLATFORM=all PACK_ARCH=all npx gulp pack",
"release": "npx cross-env-shell NODE_ENV=production \"npm run build && npm run pack\"",
"release:linux": "npx cross-env-shell NODE_ENV=production \"npm run build && npm run pack:linux\"",
"release:win32": "npx cross-env-shell NODE_ENV=production \"npm run build && npm run pack:win32\"",
"release:darwin": "npx cross-env-shell NODE_ENV=production \"npm run build && npm run pack:darwin\"",
"release:m1": "npx cross-env-shell NODE_ENV=production \"npm run build && npm run pack:m1\"",
"release:all": "npx cross-env-shell NODE_ENV=production \"npm run build && npm run pack:all\"",
"publish": "npx cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack\"",
"publish:linux": "npx cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:linux\"",
"publish:win32": "npx cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:win32\"",
"publish:darwin": "npx cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:darwin\"",
"publish:m1": "npx cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:m1\"",
"publish:all": "npx cross-env-shell NODE_ENV=production PUBLISH=true \"npm run build && npm run pack:all\""
},
"author": "mgo",
"license": "MIT",
"dependencies": {
"@electron/remote": "^2.1.2",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@lagunovsky/redux-react-router": "^4.3.2",
"@reduxjs/toolkit": "^2.2.5",
"chokidar": "^3.6.0",
"electron-updater": "^6.3.1",
"fast-xml-parser": "^4.5.0",
"follow-redirects": "^1.15.8",
"history": "^5.3.0",
"hound": "^1.0.5",
"jest-diff": "^29.7.0",
"mime": "^3.0.0",
"node-7z": "^3.0.0",
"react": "^18.2.0",
"react-redux": "9.1.2",
"react-router": "^6.22.3",
"react-router-dom": "^6.22.3",
"react-virtualized": "^9.22.5",
"typesafe-actions": "^5.1.0",
"uuid": "^10.0.0",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/follow-redirects": "^1.14.4",
"@types/fs-extra": "^11.0.4",
"@types/mime": "^3.0.4",
"@types/node-7z": "^2.1.8",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.2.22",
"@types/react-redux": "^7.1.33",
"@types/react-virtualized": "^9.21.29",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@types/ws": "^7.4.7",
"cross-env": "^7.0.3",
"electron": "^32.0.2",
"electron-builder": "^25.0.5",
"fs-extra": "^11.2.0",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"mock-socket": "^9.0.3",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-patch": "^3.1.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tslint": "^6.1.3",
"typescript": "^5.4.3",
"typescript-transform-paths": "^3.4.7",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}