-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 983 Bytes
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
{
"name": "ebs-community",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"gate": "npm run build && tsc --noEmit && vitest run"
},
"dependencies": {
"@ai-sdk/anthropic": "4.0.7",
"@ai-sdk/google": "4.0.8",
"@ai-sdk/openai": "4.0.7",
"@ai-sdk/openai-compatible": "3.0.5",
"@ai-sdk/react": "4.0.15",
"ai": "7.0.14",
"next": "16.2.10",
"react": "19.2.7",
"react-dom": "19.2.7",
"sharp": "0.34.2",
"zod": "4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "4.3.2",
"@types/node": "22.20.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"tailwindcss": "4.3.2",
"tsx": "4.22.5",
"typescript": "5.9.3",
"vitest": "4.1.9"
}
}