-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.77 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.77 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
91
92
93
{
"name": "misintel",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=integration",
"build:popup-css": "npx tailwindcss -i ./public/popup.css -o ./public/popup.css --minify",
"build:extension": "vite build",
"seed:qdrant": "npx tsx scripts/seed-qdrant.ts"
},
"dependencies": {
"@fontsource-variable/plus-jakarta-sans": "^5.2.8",
"@google-cloud/speech": "^7.2.1",
"@google/genai": "^1.30.0",
"@google/generative-ai": "^0.17.1",
"@huggingface/inference": "^4.13.10",
"@langchain/core": "^0.3.0",
"@langchain/google-genai": "^0.1.0",
"@langchain/langgraph": "^0.2.0",
"@qdrant/js-client-rest": "^1.9.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@react-three/drei": "^9.88.17",
"@react-three/fiber": "^8.15.19",
"@splinetool/react-spline": "^4.1.0",
"@splinetool/runtime": "^1.10.51",
"@tabler/icons-react": "^3.34.1",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/three": "^0.179.0",
"@upstash/redis": "^1.35.6",
"@xenova/transformers": "^2.17.2",
"autoprefixer": "^10.4.21",
"axios": "^1.12.2",
"cheerio": "^1.1.2",
"chrome": "^0.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ffmpeg-static": "^5.3.0",
"ffprobe-static": "^3.1.0",
"fft-js": "^0.0.12",
"fluent-ffmpeg": "^2.1.3",
"framer-motion": "^11.3.28",
"groq-sdk": "^0.36.0",
"gsap": "^3.13.0",
"html2canvas": "^1.4.1",
"image-hash": "^7.0.1",
"jimp": "^1.6.0",
"langchain": "^0.3.0",
"lucide-react": "^0.540.0",
"motion": "^12.23.12",
"next": "14.2.5",
"next-themes": "^0.4.6",
"pitchfinder": "^2.3.4",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.3.8",
"reactflow": "^11.11.4",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.179.1",
"three-globe": "^2.45.0",
"twilio": "^5.10.0",
"wavefile": "^11.0.0"
},
"devDependencies": {
"@types/dom-mediacapture-record": "^1.0.22",
"@types/jest": "^30.0.0",
"@types/node": "20.19.11",
"@types/react": "18.3.24",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^5.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"ignore-loader": "^0.1.2",
"jest": "^30.2.0",
"jest-environment-node": "^30.2.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.6",
"typescript": "^5",
"vite": "^7.1.3"
}
}