2026-02-24 00:51:25 +09:00
|
|
|
{
|
|
|
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
|
|
|
"productName": "gdown",
|
2026-02-25 11:12:23 +09:00
|
|
|
"version": "0.1.2",
|
2026-02-24 00:51:25 +09:00
|
|
|
"identifier": "com.tauri.dev",
|
|
|
|
|
"build": {
|
|
|
|
|
"frontendDist": "../dist",
|
|
|
|
|
"devUrl": "http://localhost:5173",
|
|
|
|
|
"beforeDevCommand": "npm run dev",
|
|
|
|
|
"beforeBuildCommand": "npm run build"
|
|
|
|
|
},
|
|
|
|
|
"app": {
|
|
|
|
|
"windows": [
|
|
|
|
|
{
|
2026-02-24 12:00:30 +09:00
|
|
|
"label": "main",
|
2026-02-24 00:51:25 +09:00
|
|
|
"title": "gdown",
|
2026-02-24 12:00:30 +09:00
|
|
|
"width": 1280,
|
2026-02-25 11:12:23 +09:00
|
|
|
"height": 660,
|
2026-02-24 12:00:30 +09:00
|
|
|
"minWidth": 1080,
|
2026-02-25 11:12:23 +09:00
|
|
|
"minHeight": 600,
|
2026-02-24 00:51:25 +09:00
|
|
|
"resizable": true,
|
|
|
|
|
"fullscreen": false
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"security": {
|
|
|
|
|
"csp": null
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"bundle": {
|
|
|
|
|
"active": true,
|
|
|
|
|
"targets": "all",
|
2026-02-24 12:00:30 +09:00
|
|
|
"resources": [
|
|
|
|
|
"resources/engine/**/*"
|
|
|
|
|
],
|
2026-02-24 00:51:25 +09:00
|
|
|
"icon": [
|
|
|
|
|
"icons/32x32.png",
|
|
|
|
|
"icons/128x128.png",
|
|
|
|
|
"icons/128x128@2x.png",
|
|
|
|
|
"icons/icon.icns",
|
|
|
|
|
"icons/icon.ico"
|
|
|
|
|
]
|
2026-02-25 01:40:52 +09:00
|
|
|
},
|
|
|
|
|
"plugins": {
|
|
|
|
|
"deep-link": {
|
|
|
|
|
"desktop": {
|
|
|
|
|
"schemes": [
|
|
|
|
|
"gdown"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-02-24 00:51:25 +09:00
|
|
|
}
|
|
|
|
|
}
|