mirror of
https://github.com/amiayweb/Hytale-F2P.git
synced 2026-02-26 16:51:46 -03:00
150 lines
3.0 KiB
JSON
150 lines
3.0 KiB
JSON
{
|
|
"name": "hytale-f2p-launcher",
|
|
"version": "2.1.0",
|
|
"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"
|
|
],
|
|
"maintainers": [
|
|
{
|
|
"name": "Terromur",
|
|
"url": "https://github.com/Terromur"
|
|
},
|
|
{
|
|
"name": "Fari Gading",
|
|
"email": "fazrigading@gmail.com",
|
|
"url": "https://github.com/fazrigading"
|
|
}
|
|
],
|
|
"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",
|
|
"electron-updater": "^6.7.3",
|
|
"fs-extra": "^11.3.3",
|
|
"tar": "^7.5.6",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"overrides": {
|
|
"tar": "$tar"
|
|
},
|
|
"build": {
|
|
"appId": "com.hytalef2p.launcher",
|
|
"productName": "Hytale F2P Launcher",
|
|
"artifactName": "${name}_${version}_${arch}.${ext}",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"files": [
|
|
"main.js",
|
|
"preload.js",
|
|
"backend/**/*",
|
|
"GUI/**/*",
|
|
"package.json"
|
|
],
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "build/icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "AppImage",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
},
|
|
{
|
|
"target": "deb",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
},
|
|
{
|
|
"target": "rpm",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
},
|
|
{
|
|
"target": "pacman",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "build/icon.png",
|
|
"category": "Game"
|
|
},
|
|
"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
|
|
},
|
|
"publish": {
|
|
"provider": "github",
|
|
"owner": "amiayweb",
|
|
"repo": "Hytale-F2P"
|
|
}
|
|
}
|
|
}
|