-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.3 KB
/
package.json
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "knaitsys",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:migrate": "exec tsx lib/db/migrate.ts",
"migrate": "dotenv -e .env -- tsx lib/db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.0.8",
"@ai-sdk/deepseek": "^0.0.4",
"@ai-sdk/fireworks": "^0.1.8",
"@ai-sdk/google": "^1.0.15",
"@ai-sdk/openai": "^1.0.16",
"@ai-sdk/xai": "^1.0.17",
"@huggingface/inference": "^2.8.1",
"@langchain/anthropic": "^0.3.11",
"@langchain/community": "^0.3.23",
"@langchain/core": "^0.3.27",
"@langchain/ollama": "^0.1.4",
"@langchain/openai": "^0.3.16",
"@langchain/pinecone": "^0.1.3",
"@langchain/redis": "^0.1.0",
"@langchain/weaviate": "^0.1.0",
"@pinecone-database/pinecone": "^4.1.0",
"@radix-ui/react-slot": "^1.1.1",
"@supabase/supabase-js": "^2.47.12",
"@t3-oss/env-nextjs": "^0.10.1",
"@types/aws4": "^1.11.6",
"JSONStream": "^1.3.5",
"ai": "^4.0.32",
"autoprefixer": "10.4.20",
"aws4": "^1.13.2",
"bootstrap-icons": "^1.11.3",
"browserify-fs": "^1.0.0",
"bufferutil": "^4.0.9",
"cheerio": "1.0.0",
"chromadb": "^1.10.0",
"class-variance-authority": "^0.7.1",
"closevector-web": "^0.1.6",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"drizzle-orm": "^0.31.2",
"drizzle-zod": "^0.5.1",
"encoding": "^0.1.13",
"eslint": "9.17.0",
"eslint-config-next": "^15.1.4",
"flowbite": "^2.5.2",
"flowbite-react": "^0.10.2",
"framer-motion": "^11.17.0",
"html-to-text": "^9.0.5",
"jsdom": "^26.0.0",
"katex": "^0.16.21",
"langchain": "^0.3.10",
"lucide-react": "^0.471.0",
"nanoid": "^5.0.7",
"next": "^15.1.4",
"next-auth": "^4.24.11",
"node-fetch": "^3.3.2",
"ollama-ai-provider": "^1.1.0",
"openai": "^4.78.0",
"path": "^0.12.7",
"pdf-parse": "^1.1.1",
"pdfjs-dist": "^4.10.38",
"postcss": "8.4.49",
"postgres": "^3.4.4",
"react": "19.0.0",
"react-audio-player-component": "^1.2.4",
"react-dom": "19.0.0",
"react-dropzone": "^14.3.5",
"react-katex": "^3.0.1",
"react-markdown": "^9.0.3",
"react-router-dom": "^7.1.1",
"react-syntax-highlighter": "^15.6.1",
"react-toastify": "^11.0.2",
"redis": "^4.7.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"stream": "^0.0.3",
"tailwind-merge": "^2.6.0",
"tailwindcss": "3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.7.3",
"unified": "^11.0.5",
"use-debounce": "^10.0.4",
"util.promisify": "^1.1.3",
"wavesurfer.js": "^7.8.15",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "22.10.5",
"@types/react": "19.0.4",
"@types/react-dom": "19.0.2",
"dotenv-cli": "^8.0.0",
"drizzle-kit": "^0.22.7",
"tsx": "^4.15.7",
"webpack": "^5.97.1"
},
"optionalDependencies": {
"utf-8-validate": "^6.0.5"
},
"pnpm": {
"overrides": {
"@langchain/core": "^0.3.0"
}
},
"browser": {
"child_process": false,
"aws4": false
}
}