mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 04:54:48 +00:00
39 lines
1015 B
JSON
39 lines
1015 B
JSON
{
|
|
"name": "minexlauncher",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "bin/www",
|
|
"scripts": {
|
|
"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.0.0 || ^22.0.0"
|
|
},
|
|
"dependencies": {
|
|
"cookie-parser": "~1.4.4",
|
|
"debug": "~2.6.9",
|
|
"express": "~4.19.2",
|
|
"http-errors": "~1.6.3",
|
|
"morgan": "~1.9.1",
|
|
"pug": "^3.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.7.0",
|
|
"@tsconfig/node20": "^20.1.4",
|
|
"@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"
|
|
}
|
|
}
|