mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
80 lines
1.4 KiB
JSON
80 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "kunkun",
|
|
"version": "../package.json",
|
|
"identifier": "sh.kunkun.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev",
|
|
"devUrl": "http://localhost:1566",
|
|
"beforeBuildCommand": "pnpm build",
|
|
"frontendDist": "../build"
|
|
},
|
|
"app": {
|
|
"macOSPrivateApi": true,
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"windows": [
|
|
{
|
|
"hiddenTitle": true,
|
|
"url": "/app",
|
|
"title": "Kunkun",
|
|
"width": 800,
|
|
"label": "main",
|
|
"visible": false,
|
|
"height": 600,
|
|
"decorations": true,
|
|
"center": true
|
|
},
|
|
{
|
|
"url": "/splashscreen",
|
|
"visible": true,
|
|
"label": "splashscreen",
|
|
"center": true
|
|
}
|
|
]
|
|
},
|
|
"bundle": {
|
|
"macOS": {
|
|
"minimumSystemVersion": "10.15"
|
|
},
|
|
"fileAssociations": [
|
|
{
|
|
"ext": ["kunkun"],
|
|
"mimeType": "text/plain",
|
|
"description": "Used to install Kunkun Extensions with a installer file",
|
|
"role": "Viewer"
|
|
}
|
|
],
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"plugins": {
|
|
"fs": {
|
|
"requireLiteralLeadingDot": false
|
|
},
|
|
"deep-link": {
|
|
"desktop": {
|
|
"schemes": ["kunkun"]
|
|
}
|
|
},
|
|
"cli": {
|
|
"description": "Kunkun CLI",
|
|
"args": [
|
|
{
|
|
"short": "v",
|
|
"name": "verbose",
|
|
"description": "Verbosity level"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|