opengoal-launcher/src-tauri/tauri.conf.json

95 lines
2 KiB
JSON
Raw Normal View History

2022-04-06 22:27:03 -04:00
{
"package": {
2022-04-08 18:37:16 -04:00
"productName": "launcher",
2022-04-06 22:27:03 -04:00
"version": "0.1.0"
},
"build": {
"distDir": "../dist",
2022-04-08 18:37:16 -04:00
"devPath": "http://localhost:3000/",
"beforeDevCommand": "npm run package && npm run dev",
"beforeBuildCommand": "npm run package && npm run build"
2022-04-06 22:27:03 -04:00
},
"tauri": {
"bundle": {
"active": true,
"targets": "all",
2022-04-08 19:21:54 -04:00
"identifier": "opengoal-launcher",
2022-04-06 22:27:03 -04:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [],
"externalBin": ["bin/extractor", "bin/gk", "bin/goalc"],
2022-04-06 22:27:03 -04:00
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "",
"longDescription": "",
"deb": {
"depends": [],
"useBootstrapper": false
},
"macOS": {
"frameworks": [],
"useBootstrapper": false,
"exceptionDomain": "",
"signingIdentity": null,
"providerShortName": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"updater": {
"active": false
},
"allowlist": {
2022-04-08 23:05:23 -04:00
"all": true,
"fs": {
2022-04-09 18:18:28 -04:00
"scope": [
"$APP/",
"$APP/iso/*",
"$APP/*"
]
},
"shell": {
"scope": [{
"name": "bin/extractor",
"sidecar": true,
"cmd": "ignored",
"args": true
},
{
"name": "bin/gk",
"sidecar": true,
"cmd": "ignored",
"args": true
},
{
"name": "bin/goalc",
"sidecar": true,
"cmd": "ignored",
"args": true
}]
2022-04-08 23:05:23 -04:00
}
2022-04-06 22:27:03 -04:00
},
"windows": [
{
2022-04-08 18:37:16 -04:00
"title": "OpenGOAL Launcher",
2022-04-06 22:27:03 -04:00
"width": 800,
"height": 600,
2022-04-08 18:37:16 -04:00
"resizable": false,
2022-04-06 22:27:03 -04:00
"fullscreen": false
}
],
"security": {
"csp": null
}
}
}