-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.38 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
{
"name": "stackhacker-ui-chat",
"description": "Full-featured AI chatbot template built with Nuxt, shadcn-vue, and Vercel AI SDK",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stackhacker-ui/chat.git"
},
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"typecheck": "nuxt typecheck",
"db:generate": "nuxt db generate",
"db:migrate": "nuxt db migrate",
"deploy": "NITRO_PRESET=cloudflare-module nuxt build && wrangler d1 migrations apply DB --remote --config .output/server/wrangler.json && wrangler --cwd .output deploy",
"deploy:preview": "NITRO_PRESET=cloudflare-module CLOUDFLARE_ENV=preview nuxt build && wrangler d1 migrations apply DB --remote --config .output/server/wrangler.json --env preview && wrangler --cwd .output deploy --env preview"
},
"dependencies": {
"@ai-sdk/gateway": "^3.0.61",
"@ai-sdk/vue": "^3.0.108",
"@iconify-json/logos": "^1.2.10",
"@iconify-json/lucide": "^1.2.95",
"@iconify-json/simple-icons": "^1.2.72",
"@libsql/client": "^0.17.0",
"@nuxt/icon": "^2.2.1",
"@nuxthub/core": "^0.10.6",
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/mdc": "^0.20.1",
"@vercel/blob": "^2.3.0",
"@vueuse/core": "^14.2.1",
"ai": "^6.0.108",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.2",
"lucide-vue-next": "^0.577.0",
"motion-v": "^1.10.3",
"nuxt": "^4.4.4",
"nuxt-auth-utils": "^0.5.29",
"nuxt-charts": "^2.1.4",
"pg": "^8.19.0",
"reka-ui": "^2.9.0",
"shadcn-nuxt": "^2.4.3",
"shiki": "^3.23.0",
"shiki-stream": "^0.1.4",
"striptags": "3.2.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"vue-sonner": "^2.0.9",
"zod": "^4.3.6"
},
"devDependencies": {
"@nuxt/eslint": "^1.15.2",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^24.11.0",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.2",
"typescript": "^5.9.3",
"vue-tsc": "^3.2.5",
"wrangler": "^4.86.0"
},
"pnpm": {
"overrides": {
"brace-expansion": "^5.0.5",
"defu": "^6.1.7",
"esbuild": "^0.25.12",
"picomatch": "^4.0.4"
}
},
"packageManager": "pnpm@10.30.3"
}