-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "@upstash/rag-chat-component",
"description": "Streaming Chat Component with Persistent History",
"version": "0.1.5-canary.5",
"module": "index.ts",
"main": "./dist/client/index.mjs",
"types": "./dist/client/index.d.ts",
"exports": {
".": {
"import": "./dist/client/index.mjs"
},
"./styles.css": "./dist/client/styles.mjs"
},
"files": [
"dist"
],
"peerDependencies": {
"next": "^14 || ^15",
"react": "^18 || ^19",
"typescript": "^5"
},
"scripts": {
"build": "tsup",
"dev": "vite"
},
"dependencies": {
"@ai-sdk/openai": "^1.0.18",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@upstash/redis": "^1.34.3",
"@upstash/vector": "^1.2.0",
"ai": "^4.0.33",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.471.0",
"react": "^19",
"react-dom": "^19",
"react-textarea-autosize": "^8.5.7",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"together-ai": "^0.11.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"esbuild-fix-imports-plugin": "^1.0.10",
"postcss": "^8",
"postcss-prefix-selector": "^2.1.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tsup": "^8.2.0",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4"
},
"homepage": "/~https://github.com/upstash/rag-chat-component#readme",
"author": "Fahreddin Ozcan",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/upstash/rag-chat-component/issues"
}
}