-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.11 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
94
95
96
97
98
99
100
101
102
103
{
"name": "CappyChat",
"version": "4.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"setup-appwrite": "node scripts/setup-appwrite-db.js",
"tag-version": "node scripts/tag-version.js",
"update-changelog": "node scripts/update-changelog.js"
},
"dependencies": {
"@ai-sdk/google": "^1.2.19",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/react": "^1.2.12",
"@dodopayments/nextjs": "^0.1.8",
"@hookform/resolvers": "^5.0.1",
"@logtail/next": "^0.2.1",
"@openrouter/ai-sdk-provider": "^0.4.6",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@radix-ui/react-visually-hidden": "^1.2.3",
"@tavily/core": "^0.5.9",
"@tsparticles/engine": "^3.8.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.8.1",
"@types/multer": "^1.4.13",
"@upstash/redis": "^1.35.6",
"@vercel/analytics": "^1.5.0",
"ai": "^4.3.16",
"appwrite": "^18.1.1",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.6.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dexie": "^4.0.11",
"dexie-react-hooks": "^1.1.7",
"dodopayments": "^1.51.2",
"exa-js": "^1.9.3",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^12.17.0",
"katex": "^0.16.22",
"lucide-react": "^0.510.0",
"mammoth": "^1.9.1",
"marked": "^15.0.12",
"mermaid": "^11.12.0",
"motion": "^12.23.12",
"multer": "^2.0.1",
"next": "15.3.8",
"next-themes": "^0.4.6",
"node-appwrite": "^17.0.0",
"pdf-parse-fork": "^1.2.0",
"pdfjs-dist": "^5.4.296",
"radix-ui": "^1.4.3",
"react": "^19.1.0",
"react-aria-components": "^1.13.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.57.0",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-pdf": "^10.2.0",
"react-router": "^7.6.2",
"react-router-dom": "^7.6.2",
"react-shiki": "^0.6.0",
"react-syntax-highlighter": "^15.6.6",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"swr": "^2.3.3",
"tailwind-merge": "^3.3.0",
"tailwind-scrollbar": "^4.0.2",
"usehooks-ts": "^3.1.1",
"uuid": "^11.1.0",
"zod": "^3.25.56",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@next/bundle-analyzer": "^15.4.6",
"@tailwindcss/postcss": "^4.1.8",
"@tailwindcss/typography": "^0.5.16",
"@types/katex": "^0.16.7",
"@types/node": "^20.19.0",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9.28.0",
"eslint-config-next": "15.3.2",
"tailwindcss": "^4.1.8",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3"
}
}