8e9d108995
Tauri 2 + React:任务列表、快捷方式、番茄钟、系统托盘、钉子穿透模式等。 Co-authored-by: Cursor <cursoragent@cursor.com>
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "DeskFloat",
|
|
"version": "0.1.0",
|
|
"identifier": "com.deskfloat.app",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": false,
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "DeskFloat",
|
|
"width": 520,
|
|
"height": 64,
|
|
"minWidth": 320,
|
|
"minHeight": 56,
|
|
"decorations": false,
|
|
"transparent": true,
|
|
"alwaysOnTop": true,
|
|
"skipTaskbar": true,
|
|
"resizable": true,
|
|
"shadow": false,
|
|
"center": false,
|
|
"x": 200,
|
|
"y": 80,
|
|
"visible": true,
|
|
"fullscreen": false,
|
|
"dragDropEnabled": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["msi", "nsis"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"category": "Productivity",
|
|
"shortDescription": "桌面透明浮动工具栏",
|
|
"longDescription": "包含任务列表、自定义快捷按钮、番茄钟的桌面浮动工具栏"
|
|
}
|
|
}
|