1
0
mirror of https://github.com/4yn/slidershim.git synced 2024-11-12 00:40:49 +01:00
slidershim/src-tauri/tauri.conf.json
2022-02-23 00:37:07 +08:00

75 lines
1.7 KiB
JSON

{
"package": {
"productName": "slidershim",
"version": "0.2.1"
},
"build": {
"distDir": "../public",
"devPath": "http://localhost:8080",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"tauri": {
"bundle": {
"active": true,
"targets": "all",
"identifier": "me.ress.imp.slidershim",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"./README.txt"
],
"externalBin": [],
"copyright": "© 4yn 2022",
"category": "DeveloperTool",
"shortDescription": "slidershim",
"longDescription": "slidershim",
"deb": {
"depends": [],
"useBootstrapper": false
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"useBootstrapper": false,
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"updater": {
"active": false
},
"allowlist": {
"all": false
},
"windows": [
{
"title": "slidershim",
"width": 500,
"height": 550,
"resizable": false,
"fullscreen": false,
"decorations": false,
"transparent": true
}
],
"security": {
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
},
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
}
}
}