Manually scaffolded Tauri 2 + React + TypeScript + Vite project structure since the CLI requires an interactive terminal. Preserves existing docs/ and .git history. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25 lines
529 B
JSON
25 lines
529 B
JSON
{
|
|
"name": "orchai",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.10.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2",
|
|
"@types/react": "^18.3.1",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"typescript": "^5.6.3",
|
|
"vite": "^6.0.3"
|
|
}
|
|
}
|