lume/src-tauri/tauri.conf.json

87 lines
1.9 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-10-18 07:59:33 +00:00
"version": "2.0.0"
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,
"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": [],
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
},
"resources": [],
"shortDescription": "",
"targets": "all",
2023-10-06 01:30:59 +00:00
"updater": {},
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
}