Files
STARTLINER/rust/tauri.conf.json
2025-05-09 21:45:59 +00:00

73 lines
2.1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "STARTLINER",
"version": "0.20.1",
"identifier": "zip.patafour.startliner",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"plugins": {
"fs": {
"requireLiteralLeadingDot": false
},
"deep-link": {
"desktop": {
"schemes": ["rainycolor"]
}
},
"updater": {
"windows": {
"installMode": "passive"
},
"endpoints": [
"https://gitea.tendokyu.moe/akanyan/STARTLINER/releases/download/latest/manifest.json"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDNFQzBGM0Y5RDUzRDNENzQKUldSMFBUM1YrZlBBUHZkMkt0UVVVczhhWitLN2F1aFREQW1WY2FwRSsvRysrSkdYaTJFWmRPUloK"
},
"cli": {
"description": "STARTLINER CLI",
"args": [
{
"short": "s",
"name": "start",
"description": "Just start"
},
{
"short": "g",
"name": "game",
"description": "Game",
"takesValue": true,
"possibleValues": ["chunithm", "ongeki"]
},
{
"short": "p",
"name": "profile",
"takesValue": true,
"description": "Profile name"
}
]
}
},
"app": {
"windows": [],
"security": {
"csp": {
"img-src": "'self' asset: https: http://asset.localhost blob: data:"
},
"assetProtocol": {
"enable": true,
"scope": ["**", "**/*", "**/.*/**/*"]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": ["icons/icon.png", "icons/icon.ico"],
"createUpdaterArtifacts": true
}
}