-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.58 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
{
"name": "ai-character-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.56",
"@ai-sdk/cohere": "^1.0.3",
"@ai-sdk/google": "^0.0.52",
"@ai-sdk/google-vertex": "^0.0.43",
"@ai-sdk/mistral": "^0.0.44",
"@ai-sdk/openai": "^0.0.68",
"@ai-sdk/provider": "^0.0.26",
"@ai-sdk/xai": "^1.0.1",
"@ducanh2912/next-pwa": "^10.2.9",
"@fal-ai/client": "^1.2.0",
"@huggingface/inference": "^2.8.1",
"@langchain/community": "^0.3.8",
"@langchain/core": "^0.3.13",
"@material-symbols/font-400": "^0.25.1",
"@mlc-ai/web-llm": "^0.2.73",
"@nextui-org/accordion": "^2.0.40",
"@nextui-org/autocomplete": "^2.1.7",
"@nextui-org/avatar": "^2.0.33",
"@nextui-org/badge": "^2.0.32",
"@nextui-org/button": "^2.0.38",
"@nextui-org/card": "^2.0.34",
"@nextui-org/checkbox": "^2.1.5",
"@nextui-org/chip": "^2.0.33",
"@nextui-org/divider": "^2.0.32",
"@nextui-org/dropdown": "^2.1.31",
"@nextui-org/image": "^2.0.32",
"@nextui-org/input": "^2.2.5",
"@nextui-org/kbd": "^2.0.34",
"@nextui-org/link": "^2.0.35",
"@nextui-org/modal": "^2.0.41",
"@nextui-org/progress": "^2.0.34",
"@nextui-org/radio": "^2.1.5",
"@nextui-org/scroll-shadow": "^2.1.20",
"@nextui-org/select": "^2.2.7",
"@nextui-org/skeleton": "^2.0.32",
"@nextui-org/slider": "^2.2.17",
"@nextui-org/spinner": "^2.0.34",
"@nextui-org/switch": "^2.0.34",
"@nextui-org/system": "^2.2.6",
"@nextui-org/table": "^2.0.40",
"@nextui-org/tabs": "^2.0.37",
"@nextui-org/theme": "^2.2.11",
"@nextui-org/tooltip": "^2.0.41",
"@nextui-org/user": "^2.0.34",
"@openrouter/ai-sdk-provider": "^0.0.6",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-context-menu": "^2.2.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.4",
"@react-stately/data": "^3.11.7",
"@stripe/react-stripe-js": "^2.8.1",
"@stripe/stripe-js": "^4.9.0",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.6",
"@tailwindcss/typography": "^0.5.15",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"ai": "^3.4.33",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.13.1",
"imgur": "^2.4.2",
"lucide-react": "^0.459.0",
"motion": "^11.11.17",
"next": "^15.1.0",
"next-themes": "^0.4.3",
"nextjs-toploader": "^3.7.15",
"node-vibrant": "^3.2.1-alpha.1",
"ollama-ai-provider": "^0.16.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-infinite-scroller": "^1.2.6",
"react-markdown": "^9.0.1",
"react-noise": "^0.2.11",
"react-toastify": "^10.0.6",
"recharts": "^2.14.1",
"rehype-raw": "^7.0.0",
"replicate": "^0.29.4",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"vaul": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-infinite-scroller": "^1.2.5",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"overrides": {
"react-is": "^19.0.0-rc-69d4b800-20241021"
}
}