forked from Alwurts/simple-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.06 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.06 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
{
"name": "simple-ai",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "npm run build:registry && next dev -p 4567",
"build": "contentlayer2 build && npm run build:registry && next build",
"start": "next start -p 4567",
"lint": "biome check --write src",
"build:registry": "tsx src/scripts/build-registry.ts",
"build:docs": "contentlayer2 build"
},
"dependencies": {
"@ai-sdk/deepseek": "^0.0.4",
"@ai-sdk/groq": "^1.1.4",
"@ai-sdk/openai": "^1.1.4",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.10.1",
"@codemirror/view": "^6.24.1",
"@hookform/resolvers": "^3.10.0",
"@lezer/highlight": "^1.2.0",
"@next/third-parties": "^15.1.4",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-aspect-ratio": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-toggle-group": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@uiw/codemirror-themes": "^4.21.24",
"@uiw/react-codemirror": "^4.23.7",
"@xyflow/react": "^12.4.2",
"ai": "^4.1.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"contentlayer2": "^0.4.6",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"jotai": "^2.1.0",
"lucide-react": "^0.469.0",
"marked": "^15.0.4",
"nanoid": "^5.0.9",
"next": "14.2.20",
"next-contentlayer2": "^0.4.6",
"next-plausible": "^3.12.4",
"next-themes": "^0.4.4",
"parse5": "^7.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-jsx-parser": "^2.2.2",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^2.1.7",
"react-wrap-balancer": "^1.1.1",
"remark-mdx": "^3.1.0",
"sonner": "^1.7.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-morph": "^22.0.0",
"vaul": "^1.1.2",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@shikijs/compat": "^1.1.7",
"@types/gtag.js": "^0.0.20",
"@types/node": "^20",
"@types/react": "^18.2.65",
"@types/react-dom": "^18",
"esbuild": "^0.17.19",
"mdast-util-toc": "^6.1.1",
"postcss": "^8",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.6.0",
"rehype-slug": "^5.1.0",
"remark": "^14.0.3",
"remark-code-import": "^1.2.0",
"remark-gfm": "^4.0.0",
"rimraf": "^4.1.3",
"shiki": "^1.26.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.5.3",
"unist-builder": "3.0.0",
"unist-util-visit": "^4.1.2"
},
"peerDependencies": {
"esbuild": "^0.17.3"
}
}