-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"name": "pale",
"private": true,
"version": "0.1.6",
"license": "GPL-2.0-only",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"android:init": "tauri android init",
"android:dev": "tauri android dev",
"android:build": "tauri android build",
"ios:init": "tauri ios init",
"ios:dev": "tauri ios dev",
"ios:build": "tauri ios build",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.5",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.12.0",
"i18next": "^26.3.1",
"lucide-react": "^0.511.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^17.0.8",
"tailwind-merge": "^3.3.0",
"livekit-client": "^2.9.1",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.1.0",
"@tauri-apps/cli": "^2.11.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^10.5.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"tailwindcss": "^4.1.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.62.0",
"vite": "^7.0.4",
"vitest": "^4.1.8"
},
"overrides": {
"esbuild": "^0.28.1"
}
}