LegacyLauncher/package.json
2026-03-04 22:05:15 +01:00

49 lines
973 B
JSON

{
"name": "legacylauncher",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"dist": "electron-builder --linux AppImage",
"dist:win": "electron-builder --win nsis"
},
"build": {
"appId": "com.legacylauncher.app",
"productName": "LegacyLauncher",
"win": {
"target": [
"nsis"
],
"icon": "256x256.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": [
"AppImage"
],
"category": "Game",
"icon": "256x256.png"
},
"files": [
"**/*",
"!dist/*"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"discord-rpc": "^4.0.1",
"extract-zip": "^2.0.1"
},
"devDependencies": {
"electron": "^40.7.0",
"electron-builder": "^26.8.1"
}
}