- 新增 @solid-primitives/filesystem、@solid-primitives/scheduled 和 @solid-primitives/storage 依赖 - 添加 @tauri-apps/plugin-dialog、@tauri-apps/plugin-fs 和 @tauri-apps/plugin-store 插件 - 更新应用窗口配置,移除 titleBarStyle 设置 - 修改应用名称为 "Comfy Resource Downloader" - 更新 ESLint 配置,移除 Solid 相关规则
40 lines
871 B
JSON
40 lines
871 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "comfy-downloader",
|
|
"version": "0.1.0",
|
|
"identifier": "new.archgrid.app.comfy.downloader",
|
|
"build": {
|
|
"beforeDevCommand": "deno task dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "deno task build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Comfy Resource Downloader",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"minWidth": 1200,
|
|
"minHeight": 800,
|
|
"resizable": true,
|
|
"hiddenTitle": false,
|
|
"theme": "Dark"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
} |