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

79 lines
1.8 KiB
JSON
Raw Normal View History

2022-01-27 12:37:27 +01:00
{
"package": {
"productName": "slidershim",
2022-11-17 18:42:05 +01:00
"version": "0.5.0"
2022-01-27 12:37:27 +01:00
},
"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-11-17 18:42:05 +01:00
"resources": [
"./README.txt"
],
2022-01-27 12:37:27 +01:00
"externalBin": [],
2022-02-05 11:07:18 +01:00
"copyright": "© 4yn 2022",
2022-01-27 12:37:27 +01:00
"category": "DeveloperTool",
2022-02-05 11:07:18 +01:00
"shortDescription": "slidershim",
"longDescription": "slidershim",
2022-01-27 12:37:27 +01:00
"deb": {
2022-07-24 07:15:35 +02:00
"depends": []
2022-01-27 12:37:27 +01:00
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"updater": {
"active": false
},
"allowlist": {
2022-03-18 14:43:10 +01:00
"all": false,
"window": {
"startDragging": true
2022-07-24 15:11:48 +02:00
},
"shell": {
"open": true
2022-03-18 14:43:10 +01:00
}
2022-01-27 12:37:27 +01:00
},
"windows": [
{
"title": "slidershim",
2022-01-27 17:31:41 +01:00
"width": 500,
2022-03-22 18:15:38 +01:00
"height": 600,
2022-01-27 14:13:34 +01:00
"resizable": false,
2022-02-06 19:01:34 +01:00
"fullscreen": false,
"decorations": false,
"transparent": true
2022-01-27 12:37:27 +01:00
}
],
"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
}
}
2022-11-17 18:42:05 +01:00
}