glowing-bear/src-tauri/tauri.conf.json

66 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2022-03-03 12:30:45 +01:00
{
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run start",
"devPath": " http://localhost:8080/",
2022-03-03 12:30:45 +01:00
"distDir": "../build",
"withGlobalTauri": true
},
"package": {
"productName": "glowing-bear",
"version": "0.10.0"
2022-03-03 12:30:45 +01:00
},
"tauri": {
"allowlist": {
"all": true
},
2022-03-03 12:30:45 +01:00
"bundle": {
"active": true,
"category": "SocialNetworking",
"copyright": "Glowing Bear developers",
"deb": {
"depends": []
},
"externalBin": [],
2022-03-03 12:30:45 +01:00
"icon": [
"../src/assets/img/favicon.png",
"../src/assets/img/glowing_bear_128x128.png",
"../src/assets/img/glowing-bear.png",
"../src/assets/img/glowing-bear.icns"
],
"identifier": "org.glowing-bear",
"longDescription": "Glowing Bear is a web frontend for the WeeChat IRC client",
2022-03-03 12:30:45 +01:00
"macOS": {
"entitlements": null,
2022-03-03 12:30:45 +01:00
"exceptionDomain": "",
"frameworks": [],
2022-03-03 12:30:45 +01:00
"providerShortName": null,
"signingIdentity": null
2022-03-03 12:30:45 +01:00
},
"resources": [],
"shortDescription": "",
"targets": "all",
2022-03-03 12:30:45 +01:00
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
2022-03-03 12:30:45 +01:00
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
2022-03-03 12:30:45 +01:00
"height": 600,
"resizable": true,
"title": "Glowing Bear",
"width": 800
2022-03-03 12:30:45 +01:00
}
]
2022-03-03 12:30:45 +01:00
}
}