1
0
mirror of https://github.com/4yn/slidershim.git synced 2024-11-14 17:57:37 +01:00
slidershim/src-tauri/tauri.conf.json

76 lines
1.7 KiB
JSON
Raw Normal View History

2022-01-27 12:37:27 +01:00
{
"package": {
"productName": "slidershim",
"version": "0.1.0"
},
"build": {
"distDir": "../public",
"devPath": "http://localhost:8080",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"tauri": {
"bundle": {
"active": true,
"targets": "all",
2022-02-05 11:00:06 +01:00
"identifier": "me.ress.imp.slidershim",
2022-01-27 12:37:27 +01:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
2022-02-05 07:45:25 +01:00
"resources": [
"res/*"
],
2022-01-27 12:37:27 +01:00
"externalBin": [],
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "",
"longDescription": "",
"deb": {
"depends": [],
"useBootstrapper": false
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"useBootstrapper": false,
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"updater": {
"active": false
},
"allowlist": {
2022-02-05 11:00:06 +01:00
"all": false,
"shell": {
"open": true
}
2022-01-27 12:37:27 +01:00
},
"windows": [
{
"title": "slidershim",
2022-01-27 17:31:41 +01:00
"width": 500,
2022-02-05 11:00:06 +01:00
"height": 500,
2022-01-27 14:13:34 +01:00
"resizable": false,
2022-01-27 12:37:27 +01:00
"fullscreen": false
}
],
"security": {
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
2022-01-27 14:13:34 +01:00
},
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
2022-01-27 12:37:27 +01:00
}
}
}