- Update application version to 2.0.0-alpha - Update application name to 'Ambient Light Control' - Upgrade Node.js requirement to >=22.0.0 (current LTS) - Upgrade pnpm requirement to >=10.0.0 (current stable) - Update all GitHub Actions workflows to use Node.js 22 and pnpm 10 - Update README.md with current version requirements - Add comprehensive project metadata to package.json - Remove obsolete src-tauri/src-tauri directory structure - Update Cargo.toml with proper project information
47 lines
956 B
JSON
47 lines
956 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2.0.0",
|
|
"productName": "Ambient Light Control",
|
|
"version": "2.0.0-alpha",
|
|
"identifier": "cc.ivanli.ambient-light.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev",
|
|
"beforeBuildCommand": "pnpm build",
|
|
"devUrl": "http://localhost:1420",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"security": {
|
|
"csp": null,
|
|
"assetProtocol": {
|
|
"scope": [
|
|
"**"
|
|
]
|
|
}
|
|
},
|
|
"windows": [
|
|
{
|
|
"fullscreen": false,
|
|
"resizable": true,
|
|
"title": "Ambient Light Control",
|
|
"width": 800,
|
|
"height": 600
|
|
}
|
|
]
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"targets": "all",
|
|
"macOS": {
|
|
"minimumSystemVersion": "13"
|
|
}
|
|
}
|
|
}
|