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

87 lines
1.8 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"devPath": "http://localhost:8080",
"distDir": "../public",
"withGlobalTauri": true
},
"package": {
"productName": "Meteorite",
"version": "0.5.0"
},
"tauri": {
"allowlist": {
"all": true,
"http": {
"all": true,
"request": true,
"scope": ["https://**", "http://**"]
}
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/icon.ico"
],
"identifier": "com.meteorite.xyz",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"webviewInstallMode": {
"type": "embedBootstrapper"
},
"wix":{
"template":"template.wxs"
}
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"height": 320,
"resizable": false,
"title": "Meteorite",
"width": 520,
"decorations": false,
"center": true
}
],
"cli": {
"description": "yey",
"args": [
{
"name": "first",
"index": 1,
"takesValue": true,
"multiple": true
}
]
}
}
}