-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 881 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 881 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
{
"name": "zabb-ai",
"version": "16.1.0",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"@google/genai": "^1.46.0",
"@tailwindcss/postcss": "^4.2.2",
"framer-motion": "^12.38.0",
"groq-sdk": "^1.1.1",
"lucide-react": "^0.577.0",
"next": "^16.2.1",
"postcss": "^8.5.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0"
},
"peerDependencies": {
"typescript": "^5"
}
}