1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 09:24:48 +00:00
MineXLauncher/package.json
zumbiepig 81ced7a075
.
2024-08-27 14:10:37 -07:00

26 lines
715 B
JSON

{
"private": true,
"name": "minexlauncher",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run ./index.ts",
"lint": "eslint ./src/",
"lint:fix": "eslint --fix ./src/",
"build": "bun run lint; rm -rf ./public/resources/scripts/ ./public/assets.json; tsc; javascript-obfuscator ./public/resources/scripts/ --output ./public/resources/scripts/ --options-preset high-obfuscation; bun run ./build.ts"
},
"dependencies": {
"@types/bun": "latest"
},
"devDependencies": {
"@tsconfig/bun": "^1.0.7",
"@tsconfig/strictest": "^2.0.5",
"eslint": "^9.9.1",
"javascript-obfuscator": "^4.1.1",
"typescript-eslint": "^8.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}