lume/src-tauri/tauri.conf.json

93 lines
2.2 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-11-01 08:08:22 +00:00
"version": "2.0.1"
2023-07-29 01:13:53 +00:00
},
2023-10-06 01:30:59 +00:00
"plugins": {
"fs": {
"scope": [
"$APPDATA/*",
"$DATA/*",
"$LOCALDATA/*",
"$DESKTOP/*",
"$DOCUMENT/*",
"$DOWNLOAD/*",
"$HOME/*",
"$PICTURE/*",
"$PUBLIC/*",
"$VIDEO/*"
]
},
"http": {
"scope": [
"http://**/",
"https://**/"
]
},
"shell": {
"open": true
2023-09-02 05:15:48 +00:00
},
2023-10-06 01:30:59 +00:00
"updater": {
"endpoints": [
"https://lus.reya3772.workers.dev/v1/{{target}}/{{arch}}/{{current_version}}",
"https://lus.reya3772.workers.dev/{{target}}/{{current_version}}"
]
}
},
"tauri": {
2023-07-29 01:13:53 +00:00
"bundle": {
"active": true,
2023-07-29 02:28:15 +00:00
"category": "SocialNetworking",
2023-07-29 01:13:53 +00:00
"deb": {
"depends": []
},
"externalBin": [],
2023-11-15 01:32:40 +00:00
"resources": [],
2023-07-29 01:13:53 +00:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
2023-11-15 01:32:40 +00:00
"copyright": "",
2023-07-29 01:13:53 +00:00
"identifier": "com.lume.nu",
2023-11-15 06:13:11 +00:00
"longDescription": "The communication app build on Nostr Protocol",
2023-11-15 01:32:40 +00:00
"shortDescription": "",
"targets": "all",
"updater": {
"active": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEU3OTdCMkM3RjU5QzE2NzkKUldSNUZwejF4N0tYNTVHYjMrU0JkL090SlEyNUVLYU5TM2hTU3RXSWtEWngrZWJ4a0pydUhXZHEK",
"windows": {
"installMode": "quiet"
}
},
"appimage": {
"bundleMediaFramework": true
},
2023-07-29 01:13:53 +00:00
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
2023-10-06 01:30:59 +00:00
"license": "../LICENSE",
2023-10-04 00:48:20 +00:00
"minimumSystemVersion": "10.15.0",
2023-10-06 01:30:59 +00:00
"providerShortName": null,
"signingIdentity": null
2023-07-29 01:13:53 +00:00
},
2023-07-29 02:28:15 +00:00
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
2023-07-29 01:13:53 +00:00
},
2023-10-11 06:45:56 +00:00
"macOSPrivateApi": true
2023-07-29 01:13:53 +00:00
}
2023-10-06 01:30:59 +00:00
}