Scaffold Tauri v2 + React + TypeScript app

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Homer
2026-07-13 09:02:55 +02:00
parent 8403bdcfe3
commit 04bf6066ac
38 changed files with 2538 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "kcd2-overlay",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && 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": {
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"@tauri-apps/cli": "^2"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}