-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.01 KB
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
33
34
35
36
37
{
"name": "transcribd-tauri",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"debug:transcribe:http": "node scripts/debug-http-transcription.mjs",
"debug:transcribe:realtime": "node scripts/debug-realtime-transcription.mjs",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "CARGO_BUILD_JOBS=1 tauri build --no-bundle",
"tauri:bundle": "CARGO_BUILD_JOBS=1 tauri build"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"audit": "^0.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/node": "^22.7.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"jsdom": "^24.1.1",
"typescript": "^5.6.0",
"vite": "^5.4.8",
"vitest": "^2.1.2"
}
}