1
0
mirror of https://github.com/4yn/slidershim.git synced 2025-02-01 20:18:07 +01:00
slidershim/src-tauri/tauri.conf.json
2022-07-28 02:16:06 +08:00

78 lines
1.7 KiB
JSON

{
"package": {
"productName": "slidershim",
"version": "0.4.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": []
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"updater": {
"active": false
},
"allowlist": {
"all": false,
"window": {
"startDragging": true
},
"shell": {
"open": true
}
},
"windows": [
{
"title": "slidershim",
"width": 500,
"height": 600,
"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
}
}
}