1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 08:34:48 +00:00
This commit is contained in:
zumbiepig 2024-07-25 08:12:55 -07:00
parent 4e10eb9d80
commit e412a1340b
2 changed files with 1030 additions and 23 deletions

1037
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -4,13 +4,17 @@
"type": "module",
"main": "bin/www",
"scripts": {
"start": "node bin/www",
"build": "tsc",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
"start": "node ./bin/www",
"build": "npm run build:clean && npm run build:compile && npm run build:obfuscate",
"build:clean": "rimraf ./public",
"build:compile": "tsc",
"build:obfuscate": "javascript-obfuscator ./public/resources/scripts --output ./public/resources/scripts --options-preset high-obfuscation",
"build:minify": "",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src"
},
"engines": {
"node": ">=20.11"
"node": "^20.0.0 || ^22.0.0"
},
"dependencies": {
"cookie-parser": "~1.4.4",
@ -26,6 +30,8 @@
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"eslint": "^8.57.0",
"javascript-obfuscator": "^4.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
}