mirror of
https://gitea.shironeko-all.duckdns.org/shironeko/Hytale-F2P-2.git
synced 2026-02-26 10:41:46 -03:00
125 lines
2.6 KiB
JSON
125 lines
2.6 KiB
JSON
{
|
|
"name": "hytale-f2p-launcherv2",
|
|
"version": "2.0.2a",
|
|
"description": "A modern, cross-platform launcher for Hytale with automatic updates and multi-client support",
|
|
"homepage": "https://github.com/amiayweb/Hytale-F2P",
|
|
"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",
|
|
"game",
|
|
"client",
|
|
"cross-platform",
|
|
"electron",
|
|
"auto-update",
|
|
"mod-manager",
|
|
"chat"
|
|
],
|
|
"author": {
|
|
"name": "AMIAY",
|
|
"email": "support@amiay.dev"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"electron": "^40.0.0",
|
|
"electron-builder": "^26.4.0"
|
|
},
|
|
"dependencies": {
|
|
"adm-zip": "^0.5.10",
|
|
"axios": "^1.6.0",
|
|
"discord-rpc": "^4.0.1",
|
|
"tar": "^6.2.1",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"overrides": {
|
|
"tar": "$tar"
|
|
},
|
|
"build": {
|
|
"appId": "com.hytalef2p.launcher",
|
|
"productName": "Hytale F2P",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"files": [
|
|
"main.js",
|
|
"preload.js",
|
|
"backend/**/*",
|
|
"GUI/**/*",
|
|
"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",
|
|
"description": "A modern, cross-platform launcher for Hytale with automatic updates and multi-client support"
|
|
},
|
|
"mac": {
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": [
|
|
"universal"
|
|
]
|
|
},
|
|
{
|
|
"target": "zip",
|
|
"arch": [
|
|
"universal"
|
|
]
|
|
}
|
|
],
|
|
"icon": "build/icon.icns",
|
|
"category": "public.app-category.games"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|