1
0
mirror of https://github.com/4yn/slidershim.git synced 2024-12-19 07:35:51 +01:00
slidershim/src-tauri/tauri.conf.json

71 lines
1.6 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",
"identifier": "com.tauri.dev",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [],
"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": {
"all": true
},
"windows": [
{
"title": "slidershim",
2022-01-27 17:31:41 +01:00
"width": 500,
"height": 400,
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
}
}
}