mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
109 lines
2.6 KiB
JSON
109 lines
2.6 KiB
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
"productName": "Tauri API",
|
|
"version": "2.0.0",
|
|
"identifier": "com.tauri.api",
|
|
"build": {
|
|
"devUrl": "http://localhost:5173",
|
|
"frontendDist": "../dist",
|
|
"beforeDevCommand": "pnpm dev",
|
|
"beforeBuildCommand": "pnpm build"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"macOSPrivateApi": true,
|
|
"security": {
|
|
"pattern": {
|
|
"use": "isolation",
|
|
"options": {
|
|
"dir": "../isolation-dist/"
|
|
}
|
|
},
|
|
"csp": {
|
|
"default-src": "'self' customprotocol: asset:",
|
|
"connect-src": "ipc: http://ipc.localhost",
|
|
"font-src": ["https://fonts.gstatic.com"],
|
|
"img-src": "'self' asset: http://asset.localhost blob: data:",
|
|
"style-src": "'unsafe-inline' 'self' http://fonts.googleapis.com"
|
|
},
|
|
"freezePrototype": true,
|
|
"assetProtocol": {
|
|
"enable": true,
|
|
"scope": {
|
|
"allow": ["$APPDATA/db/**", "$RESOURCE/**"],
|
|
"deny": ["$APPDATA/db/*.stronghold"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"plugins": {
|
|
"cli": {
|
|
"description": "Tauri API example",
|
|
"args": [
|
|
{
|
|
"short": "c",
|
|
"name": "config",
|
|
"takesValue": true,
|
|
"description": "Config path"
|
|
},
|
|
{
|
|
"short": "t",
|
|
"name": "theme",
|
|
"takesValue": true,
|
|
"description": "App theme",
|
|
"possibleValues": ["light", "dark", "system"]
|
|
},
|
|
{
|
|
"short": "v",
|
|
"name": "verbose",
|
|
"description": "Verbosity level"
|
|
}
|
|
],
|
|
"subcommands": {
|
|
"update": {
|
|
"description": "Updates the app",
|
|
"args": [
|
|
{
|
|
"short": "b",
|
|
"name": "background",
|
|
"description": "Update in background"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"shell": {
|
|
"open": true
|
|
},
|
|
"updater": {
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDE5QzMxNjYwNTM5OEUwNTgKUldSWTRKaFRZQmJER1h4d1ZMYVA3dnluSjdpN2RmMldJR09hUFFlZDY0SlFqckkvRUJhZDJVZXAK",
|
|
"endpoints": [
|
|
"https://tauri-update-server.vercel.app/update/{{target}}/{{current_version}}"
|
|
]
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"windows": {
|
|
"wix": {
|
|
"language": {
|
|
"en-US": {},
|
|
"pt-BR": {
|
|
"localePath": "locales/pt-BR.wxl"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"iOS": {
|
|
"minimumSystemVersion": "14.0"
|
|
}
|
|
}
|
|
}
|