lume/src-tauri/tauri.conf.json

141 lines
3.0 KiB
JSON
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
2023-09-06 00:46:31 +00:00
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
2023-07-29 01:13:53 +00:00
"build": {
2023-09-19 09:31:38 +00:00
"beforeBuildCommand": "pnpm run build",
"beforeDevCommand": "pnpm run dev",
2023-07-29 01:13:53 +00:00
"devPath": "http://localhost:3000",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "Lume",
2023-09-29 05:40:02 +00:00
"version": "1.2.6"
2023-07-29 01:13:53 +00:00
},
"tauri": {
2023-09-02 05:15:48 +00:00
"allowlist": {
"app": {
"all": true,
"show": true,
"hide": true
},
"path": {
"all": true
},
"dialog": {
"all": true,
"ask": true,
"confirm": true,
"message": true,
"open": true,
"save": true
},
"fs": {
"all": false,
"removeFile": true,
"writeFile": true,
2023-09-03 01:43:08 +00:00
"readDir": true,
"readFile": true,
2023-09-02 05:15:48 +00:00
"scope": [
"$APPDATA/*",
"$DATA/*",
"$LOCALDATA/*",
"$DESKTOP/*",
"$DOCUMENT/*",
"$DOWNLOAD/*",
"$HOME/*",
"$PICTURE/*",
"$PUBLIC/*",
"$VIDEO/*"
]
},
"http": {
"all": true,
"scope": [
2023-09-02 05:49:04 +00:00
"http://**",
"https://**"
2023-09-02 05:15:48 +00:00
]
},
"shell": {
"all": false,
"open": true
},
"os": {
"all": true
},
"window": {
"all": false,
"center": true,
"setResizable": true,
"setSize": true,
2023-09-10 00:19:36 +00:00
"startDragging": true,
"create": true,
"close": true,
"print": true
2023-09-02 05:15:48 +00:00
},
"clipboard": {
"all": false,
"writeText": true,
"readText": true
},
"notification": {
"all": true
}
},
2023-07-29 01:13:53 +00:00
"bundle": {
"active": true,
"appimage": {
"bundleMediaFramework": true
},
2023-07-29 02:28:15 +00:00
"category": "SocialNetworking",
"copyright": "",
2023-07-29 01:13:53 +00:00
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.lume.nu",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
2023-08-14 02:03:58 +00:00
"signingIdentity": null,
2023-10-04 00:48:20 +00:00
"minimumSystemVersion": "10.15.0",
"license": "../LICENSE"
2023-07-29 01:13:53 +00:00
},
"resources": [],
"shortDescription": "",
"targets": "all",
2023-07-29 02:28:15 +00:00
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
2023-07-29 01:13:53 +00:00
},
2023-09-02 05:15:48 +00:00
"updater": {
"endpoints": [
"https://lus.reya3772.workers.dev/v1/{{target}}/{{arch}}/{{current_version}}",
"https://lus.reya3772.workers.dev/{{target}}/{{current_version}}"
]
},
2023-07-29 01:13:53 +00:00
"security": {
2023-09-10 00:19:36 +00:00
"dangerousRemoteDomainIpcAccess": [
{
"scheme": "https",
"domain": "nwc.getalby.com",
"windows": ["alby"],
"enableTauriAPI": true
}
]
2023-10-05 00:28:35 +00:00
},
"macOSPrivateApi": true
2023-07-29 01:13:53 +00:00
}
2023-08-06 00:59:43 +00:00
}