-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.67 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
{
"name": "moolahmodlauncher",
"version": "1.0.0",
"description": "A simple mod launcher",
"main": "./.webpack/main",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "run-p \"lint:*\"",
"lint:eslint-src": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:eslint-config": "eslint \"./*.{js,ts}\"",
"lint:prettier-src": "prettier --check \"src/**/*.{js,ts,tsx}\"",
"lint:prettier-conifg": "prettier --check \"./*.{js,ts}\"",
"format": "run-p \"format:*\"",
"format:eslint-src": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
"format:eslint-config": "eslint \"./*.{js,ts}\" --fix",
"format:prettier-src": "prettier --write \"src/**/*.{js,ts,tsx}\"",
"format:prettier-config": "prettier --write \"./*.{js,ts}\"",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoolahModding/MoolahModLauncher.git"
},
"author": "MoolahModding",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/MoolahModding/MoolahModLauncher/issues"
},
"homepage": "https://github.com/MoolahModding/MoolahModLauncher#readme",
"devDependencies": {
"@electron-forge/cli": "^6.4.2",
"@electron-forge/maker-squirrel": "^6.4.2",
"@electron-forge/maker-zip": "^6.4.2",
"@electron-forge/plugin-auto-unpack-natives": "^6.4.2",
"@electron-forge/plugin-webpack": "^6.4.2",
"@electron-forge/shared-types": "^6.4.2",
"@types/adm-zip": "^0.5.3",
"@types/fs-extra": "^11.0.3",
"@types/node": "^18.18.6",
"@types/toposort": "^2.0.5",
"@types/winreg": "^1.2.34",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"css-loader": "^6.8.1",
"electron": "^27.0.2",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-unused-imports": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"node-loader": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0"
},
"dependencies": {
"adm-zip": "^0.5.10",
"chokidar": "^3.5.3",
"drivelist": "^11.1.0",
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"octokit": "^3.1.0",
"toposort": "^2.0.2",
"update-electron-app": "^2.0.1",
"winreg": "^1.2.4"
},
"engines": {
"node": ">=18"
}
}