-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.47 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
{
"name": "cockatiel",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@11.1.3+sha512.c85357fe17ca12dd23dd7071822666dfd7e3cb76fe214e3370b5ea2fb34f2a231185509b63e717f3cd0acb38dd3f8d82bcd5e8172400ae678b70ea4fbed0896d",
"scripts": {
"dev": "vite",
"routes:generate": "tsr generate",
"build": "tsc -b && vite build && cp dist/index.html dist/404.html",
"build:deploy": "bash scripts/build-deploy.sh",
"preview": "vite preview",
"lint:biome": "biome check .",
"lint:knip": "knip",
"lint:types": "tsc -b",
"lint:wasm-version": "bash scripts/check-wasm-vad-version.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:ui:coverage": "vitest --ui --coverage",
"test:coverage": "vitest run --coverage",
"download:wasm": "bash scripts/download-wasm-vad.sh",
"copy:coi-sw": "cp node_modules/coi-serviceworker/coi-serviceworker.js public/coi-serviceworker.js",
"postinstall": "pnpm run copy:coi-sw"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-router": "^1.170.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"coi-serviceworker": "^0.1.7",
"idb-keyval": "^6.2.5",
"lucide-react": "^1.17.0",
"oauth4webapi": "^3.8.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-dropzone": "^15.0.0",
"shadcn": "^4.11.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"wavesurfer.js": "^7.12.7",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@commitlint/types": "^21.0.1",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/router-cli": "^1.167.17",
"@tanstack/router-plugin": "^1.168.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.8",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"knip": "^6.16.1",
"lefthook": "^2.1.9",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
}
}