-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2 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": "ai-chatbot",
"type": "module",
"private": true,
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "pnpm simple-git-hooks",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@ai-sdk/deepseek": "^2.0.20",
"@ai-sdk/openai": "^3.0.29",
"@ai-sdk/perplexity": "^3.0.19",
"@ai-sdk/vue": "^3.0.86",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.3",
"@vue-flow/core": "^1.48.2",
"@vue-flow/node-toolbar": "^1.1.1",
"@vueuse/core": "^14.2.1",
"ai": "^6.0.86",
"ansi-to-vue3": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-vue": "^8.6.0",
"lucide-vue-next": "^0.564.0",
"mermaid": "^11.12.2",
"motion-v": "2.0.0-beta.3",
"nanoid": "^5.1.6",
"nuxt": "^4.3.1",
"reka-ui": "^2.8.0",
"shadcn-nuxt": "^2.4.3",
"shiki": "^3.22.0",
"tailwind-merge": "^3.4.1",
"tokenlens": "^1.3.1",
"vue": "^3.5.28",
"vue-router": "^5.0.2",
"vue-stick-to-bottom": "^0.1.0",
"vue-stream-markdown": "^0.5.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@iconify-json/radix-icons": "^1.2.6",
"@iconify/vue": "^5.0.0",
"@nuxtjs/color-mode": "^4.0.0",
"@tailwindcss/vite": "^4.1.18",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*": "eslint --fix"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}