1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 09:24:48 +00:00
This commit is contained in:
zumbiepig 2024-07-25 08:12:55 -07:00
parent ab9eb07444
commit 9d93c353e2
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", "type": "module",
"main": "bin/www", "main": "bin/www",
"scripts": { "scripts": {
"start": "node bin/www", "start": "node ./bin/www",
"build": "tsc", "build": "npm run build:clean && npm run build:compile && npm run build:obfuscate",
"lint": "eslint src", "build:clean": "rimraf ./public",
"lint:fix": "eslint --fix src" "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": { "engines": {
"node": ">=20.11" "node": "^20.0.0 || ^22.0.0"
}, },
"dependencies": { "dependencies": {
"cookie-parser": "~1.4.4", "cookie-parser": "~1.4.4",
@ -26,6 +30,8 @@
"@tsconfig/strictest": "^2.0.5", "@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3", "@types/eslint__js": "^8.42.3",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"javascript-obfuscator": "^4.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.5.3", "typescript": "^5.5.3",
"typescript-eslint": "^7.16.1" "typescript-eslint": "^7.16.1"
} }