Expand README with desktop platform requirements (Windows x86, macOS ARM), helper build commands, gateway utility scripts, and updated local test flow. Add realistic MVP usage section clarifying current platform build status, gateway configuration needs, and admin debug profile behavior with client private key handling.
28 lines
739 B
JSON
28 lines
739 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-x86": "bash ./scripts/build-tunnel-helper.sh i686-pc-windows-msvc",
|
|
"helper:macos-arm64": "bash ./scripts/build-tunnel-helper.sh aarch64-apple-darwin"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.3.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.3.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"
|
|
}
|
|
}
|