mirror of
https://github.com/gradenGnostic/LegacyLauncher.git
synced 2026-04-23 15:36:23 +00:00
50 lines
1,005 B
JSON
50 lines
1,005 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",
|
|
"electron-store": "^6.0.1",
|
|
"extract-zip": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^40.7.0",
|
|
"electron-builder": "^26.8.1"
|
|
}
|
|
}
|