forked from boring877/voice_type_rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1008 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "voice-type-desktop",
"private": true,
"version": "0.5.1",
"packageManager": "bun@1.2.7",
"type": "module",
"scripts": {
"dev": "vite --config frontend/vite.config.ts",
"build": "tsc -b frontend/tsconfig.json && vite build --config frontend/vite.config.ts",
"preview": "vite preview --config frontend/vite.config.ts",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"msix": "powershell -ExecutionPolicy Bypass -File scripts/build-msix.ps1",
"macos:build": "bash scripts/build-macos.sh",
"macos:build:universal": "bash scripts/build-macos-universal.sh"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
}
}