1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 09:24:48 +00:00
MineXLauncher/package.json
zumbiepig 3928bab178
.
2024-09-02 13:27:29 -07:00

47 lines
1.1 KiB
JSON

{
"private": true,
"name": "minexlauncher",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "NODE_ENV=production bun run ./index.ts",
"dev": "NODE_ENV=development DEBUG=app:* bun --hot run ./index.ts",
"lint": "eslint ./src/",
"lint:fix": "eslint --fix ./src/",
"build": "bun run ./build.ts",
"build:fast": "bun run ./build_fast.ts"
},
"dependencies": {
"chalk": "^5.3.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"debug": "^4.3.6",
"errorhandler": "^1.5.1",
"express": "^4.19.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"pako": "^2.1.0",
"semver": "^7.6.3",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@tsconfig/bun": "^1.0.7",
"@tsconfig/strictest": "^2.0.5",
"@types/bun": "^1.1.8",
"@types/compression": "^1.7.5",
"@types/debug": "^4.1.12",
"@types/errorhandler": "^1.5.3",
"@types/eslint__js": "^8.42.3",
"@types/morgan": "^1.9.9",
"@types/pako": "^2.0.3",
"@types/semver": "^7.5.8",
"@types/serve-favicon": "^2.5.7",
"eslint": "^9.9.1",
"javascript-obfuscator": "^4.1.1",
"typescript-eslint": "^8.3.0"
},
"peerDependencies": {
"typescript": "^5.5.4"
}
}