mirror of
https://git.sanhost.net/sanasol/hytale-f2p.git
synced 2026-02-26 06:41:47 -03:00
90 lines
2.0 KiB
JSON
90 lines
2.0 KiB
JSON
{
|
|
"name": "hytale-f2p-launcher",
|
|
"version": "1.0.0",
|
|
"description": "Hytale F2P Launcher",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"dev": "electron . --dev",
|
|
"build": "electron-builder",
|
|
"build:win": "electron-builder --win",
|
|
"build:linux": "electron-builder --linux",
|
|
"build:mac": "electron-builder --mac",
|
|
"build:all": "electron-builder --win --linux --mac"
|
|
},
|
|
"keywords": ["hytale", "launcher"],
|
|
"author": "AMIAY",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"electron": "^28.0.0",
|
|
"electron-builder": "^24.9.1"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.0",
|
|
"adm-zip": "^0.5.10",
|
|
"uuid": "^9.0.1",
|
|
"tar": "^7.0.0"
|
|
},
|
|
"build": {
|
|
"appId": "com.hytalef2p.launcher",
|
|
"productName": "Hytale F2P Launcher",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"files": [
|
|
"main.js",
|
|
"preload.js",
|
|
"backend/**/*",
|
|
"index.html",
|
|
"package.json"
|
|
],
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": ["x64"]
|
|
},
|
|
{
|
|
"target": "portable",
|
|
"arch": ["x64"]
|
|
}
|
|
],
|
|
"icon": "icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "AppImage",
|
|
"arch": ["x64"]
|
|
},
|
|
{
|
|
"target": "deb",
|
|
"arch": ["x64"]
|
|
}
|
|
],
|
|
"icon": "build/icon.png",
|
|
"category": "Game"
|
|
},
|
|
"mac": {
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": ["x64", "arm64"]
|
|
},
|
|
{
|
|
"target": "zip",
|
|
"arch": ["x64", "arm64"]
|
|
}
|
|
],
|
|
"icon": "build/icon.icns",
|
|
"category": "public.app-category.games"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true
|
|
}
|
|
}
|
|
}
|