Update Linux Windows build script to add scripts directory to PATH and reference cargo-xwin by name rather than direct path to wrapper script, improving compatibility with Tauri's runner resolution mechanism.
29 lines
966 B
JSON
29 lines
966 B
JSON
{
|
|
"name": "nexavpn-desktop-client",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build",
|
|
"helper:windows-x64": "bash ./scripts/build-tunnel-helper.sh x86_64-pc-windows-msvc",
|
|
"helper:macos-arm64": "bash ./scripts/build-tunnel-helper.sh aarch64-apple-darwin",
|
|
"tauri:build:windows-x64:linux": "chmod +x ./scripts/cargo-xwin && PATH=\"$PWD/scripts:$PATH\" XWIN_ARCH=x86_64 tauri build --runner cargo-xwin --target x86_64-pc-windows-msvc --config src-tauri/tauri.windows.conf.json"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "2.10.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "2.10.1",
|
|
"@types/react": "^18.3.20",
|
|
"@types/react-dom": "^18.3.6",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"typescript": "^5.8.2",
|
|
"vite": "^6.2.2"
|
|
}
|
|
}
|