lume/src-tauri/tauri.conf.json

101 lines
2.1 KiB
JSON
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "Lume",
2023-03-28 06:33:27 +00:00
"version": "0.2.1"
2023-02-21 07:58:47 +00:00
},
"tauri": {
"allowlist": {
"all": false,
2023-03-14 03:57:51 +00:00
"app": {
2023-03-27 13:28:26 +00:00
"all": false
2023-03-14 03:57:51 +00:00
},
"os": {
"all": true
},
2023-03-19 00:52:43 +00:00
"http": {
2023-03-27 13:28:26 +00:00
"all": false,
2023-03-19 00:52:43 +00:00
"request": true,
"scope": ["https://rbr.bio/*", "https://metadata.uselume.xyz/*"]
},
2023-02-21 07:58:47 +00:00
"shell": {
"all": false,
"open": true
},
"clipboard": {
2023-03-27 13:28:26 +00:00
"all": false,
"writeText": true,
"readText": true
},
"notification": {
2023-03-27 13:28:26 +00:00
"all": false
},
2023-02-21 07:58:47 +00:00
"window": {
2023-03-27 04:28:57 +00:00
"startDragging": true,
"close": true
2023-02-21 07:58:47 +00:00
}
},
"bundle": {
"active": true,
2023-02-24 00:54:39 +00:00
"category": "SocialNetworking",
2023-02-21 07:58:47 +00:00
"copyright": "",
2023-04-01 01:20:13 +00:00
"appimage": {
"bundleMediaFramework": true
},
2023-02-21 07:58:47 +00:00
"deb": {
"depends": []
},
"externalBin": [],
2023-02-25 14:02:56 +00:00
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
2023-02-24 00:54:39 +00:00
"identifier": "com.uselume.xyz",
2023-02-21 07:58:47 +00:00
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
2023-02-25 14:02:56 +00:00
"systemTray": {
"iconPath": "icons/icon.png",
"iconAsTemplate": true
},
2023-02-21 07:58:47 +00:00
"windows": [
{
2023-03-28 12:44:25 +00:00
"title": "Lume",
2023-02-21 07:58:47 +00:00
"theme": "Dark",
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"transparent": false,
"fullscreen": false,
"resizable": true,
"width": 1100,
"height": 800,
2023-03-28 13:04:14 +00:00
"minWidth": 1000,
"minHeight": 700
2023-02-21 07:58:47 +00:00
}
]
}
}