LegacyLauncher/package.json
gardenGnostic 033315526c
v3.5.0
2026-03-12 22:58:49 +01:00

67 lines
1.5 KiB
JSON

{
"name": "legacylauncher",
"version": "3.5.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"dist": "electron-builder --linux AppImage",
"dist:flatpak": "electron-builder --linux flatpak",
"dist:win": "electron-builder --win nsis",
"dist:mac": "electron-builder --mac dmg"
},
"build": {
"appId": "com.legacylauncher.app",
"productName": "LegacyLauncher",
"win": {
"target": [
"nsis"
],
"icon": "512x512.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": [
"AppImage",
"flatpak"
],
"category": "Game",
"icon": "512x512.png",
"desktop": {
"Name": "Minecraft LCE Launcher",
"GenericName": "Minecraft Launcher",
"Comment": "A Minecraft: Legacy Console Edition launcher",
"Categories": "Game;Emulation;",
"StartupNotify": "true"
},
"executableName": "legacylauncher"
},
"mac": {
"target": [
"dmg"
],
"icon": "512x512.png",
"category": "public.app-category.games"
},
"files": [
"**/*",
"!dist/*"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"electron-store": "^6.0.1",
"extract-zip": "^2.0.1"
},
"devDependencies": {
"electron": "^40.7.0",
"electron-builder": "^26.8.1"
}
}