-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.75 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "openspeech",
"private": true,
"version": "0.2.50-beta.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "pnpm -r build",
"build:web": "tsc && vite build",
"build:landing": "cd packages/openspeech-landing && tsc",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev --config src-tauri/tauri.dev.conf.json",
"tauri:dev:staging": "tauri dev --config src-tauri/tauri.dev.conf.json --features staging",
"test": "vitest run",
"test:watch": "vitest",
"reset:permissions": "bash scripts/reset-permissions.sh",
"version": "node scripts/sync-version.mjs && git add src-tauri/Cargo.toml",
"dmg:build": "node scripts/build-dmg.mjs"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"fs-xattr",
"macos-alias"
]
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/space-mono": "^5.2.9",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/react-virtual": "^3.13.24",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "~2.5.1",
"@tauri-apps/plugin-clipboard-manager": "~2.3.2",
"@tauri-apps/plugin-dialog": "~2.7.0",
"@tauri-apps/plugin-global-shortcut": "~2.3.1",
"@tauri-apps/plugin-log": "~2.8.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-sql": "~2.4.0",
"@tauri-apps/plugin-store": "~2.4.2",
"@tauri-apps/plugin-updater": "~2.10.1",
"@wavesurfer/react": "^1.0.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff": "^9.0.0",
"framer-motion": "^12.38.0",
"i18next": "^26.0.7",
"lenis": "^1.3.23",
"lucide-react": "^1.9.0",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^17.0.4",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.14.2",
"recharts": "^3.8.1",
"shadcn": "^4.4.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"tauri-plugin-macos-permissions-api": "^2.3.0",
"tw-animate-css": "^1.4.0",
"wavesurfer.js": "^7.12.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@openloaf/openspeech-frontend": "0.2.50-beta.1",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"jsdom": "^29.1.1",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^4.1.5"
},
"optionalDependencies": {
"appdmg": "^0.6.6"
},
"patchedDependencies": {
"appdmg": "patches/appdmg.patch"
}
}