-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.49 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.49 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "shikbo-ai",
"version": "1.0.0",
"type": "module",
"private": true,
"description": "Shikbo AI - Your Virtual Tutor, a beautiful AI chat application built with Next.js and TypeScript",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@ai-sdk/groq": "^3.0.16",
"@ai-sdk/openai": "^3.0.14",
"@heroui/accordion": "^2.2.26",
"@heroui/alert": "^2.2.29",
"@heroui/autocomplete": "^2.3.31",
"@heroui/avatar": "^2.2.24",
"@heroui/badge": "^2.2.18",
"@heroui/button": "^2.2.29",
"@heroui/card": "^2.2.27",
"@heroui/checkbox": "^2.3.29",
"@heroui/chip": "^2.2.24",
"@heroui/code": "^2.2.22",
"@heroui/divider": "^2.2.21",
"@heroui/drawer": "^2.2.26",
"@heroui/dropdown": "^2.3.29",
"@heroui/form": "^2.1.29",
"@heroui/framer-utils": "^2.1.25",
"@heroui/image": "^2.2.18",
"@heroui/input": "^2.4.30",
"@heroui/kbd": "^2.2.23",
"@heroui/link": "^2.2.25",
"@heroui/listbox": "^2.3.28",
"@heroui/modal": "^2.2.26",
"@heroui/navbar": "^2.2.27",
"@heroui/pagination": "^2.2.26",
"@heroui/popover": "^2.3.29",
"@heroui/progress": "^2.2.24",
"@heroui/radio": "^2.3.29",
"@heroui/react-utils": "^2.1.14",
"@heroui/scroll-shadow": "^2.3.19",
"@heroui/select": "^2.4.30",
"@heroui/skeleton": "^2.2.18",
"@heroui/slider": "^2.4.26",
"@heroui/snippet": "^2.2.30",
"@heroui/spacer": "^2.2.22",
"@heroui/spinner": "^2.2.26",
"@heroui/switch": "^2.2.26",
"@heroui/system": "^2.4.25",
"@heroui/table": "^2.2.29",
"@heroui/tabs": "^2.2.26",
"@heroui/theme": "^2.4.25",
"@heroui/toast": "^2.0.19",
"@heroui/tooltip": "^2.2.26",
"@heroui/user": "^2.2.24",
"@huggingface/inference": "^4.13.10",
"@huggingface/transformers": "latest",
"@openrouter/ai-sdk-provider": "^2.1.1",
"@react-aria/ssr": "^3.9.10",
"@react-aria/visually-hidden": "^3.8.29",
"@upstash/vector": "^1.2.2",
"@vercel/kv": "^3.0.0",
"ai": "^6.0.57",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"framer-motion": "^12.29.0",
"highlight.js": "^11.11.1",
"intl-messageformat": "^11.1.1",
"katex": "^0.16.27",
"lucide-react": "latest",
"next": "^16.1.4",
"next-themes": "^0.4.6",
"onnxruntime-web": "latest",
"pdf2json": "^4.0.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tesseract.js": "^7.0.0",
"vercel": "^28.18.5"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "latest",
"@tailwindcss/typography": "^0.5.19",
"@types/bun": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "latest",
"tailwindcss": "latest",
"typescript": "latest"
},
"keywords": [
"ai",
"chat",
"chatbot",
"huggingface",
"llm",
"nextjs",
"typescript",
"vercel"
],
"author": "AI Chat Assistant",
"license": "CC-BY-NC-SA-4.0",
"engines": {
"node": ">=18.0.0"
}
}