Bootstrap tauri app in client

This commit is contained in:
Mathias Wagner
2025-09-09 14:25:09 +02:00
parent 3bb2dcabaf
commit 87efa1cf0e
31 changed files with 6612 additions and 0 deletions

23
client/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "client",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.6.0",
"vite": "^7.0.4",
"@tauri-apps/cli": "^2"
}
}