diff options
| author | Solstice <solstice@local> | 2026-06-09 00:06:42 -0700 |
|---|---|---|
| committer | Solstice <solstice@local> | 2026-06-09 00:06:42 -0700 |
| commit | 59708192eb000770ede58f21e5a397c65875eb3b (patch) | |
| tree | 15c270cc1bb7e62094f45af0a91aa335c4e51ed2 /package.json | |
chore: initial project scaffolding
- Tauri v2 + React + TypeScript (Vite)
- Tailwind CSS v4 via @tailwindcss/vite
- Zustand for state management
- Design system: tokens.css, fonts, icons
- tauri.conf.json: solstice, 900x640, min 700x520
- global.css imports tokens and Tailwind
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..5759bd4 --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "name": "solstice", + "private": true, + "version": "0.1.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "preview": "vite preview", + "tauri": "tauri" + }, + "dependencies": { + "@tailwindcss/vite": "^4.3.0", + "@tauri-apps/api": "^2", + "@tauri-apps/plugin-opener": "^2", + "react": "^19.1.0", + "react-dom": "^19.1.0", + "tailwindcss": "^4.3.0", + "zustand": "^5.0.14" + }, + "devDependencies": { + "@tauri-apps/cli": "^2", + "@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" + }, + "allowScripts": { + "esbuild@0.27.7": true + } +} |
