-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.01 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
{
"name": "taan-mind",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"build:check": "pnpm format:check && pnpm lint && nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "nuxt typecheck",
"db:generate": "nuxt db generate",
"db:migrate": "nuxt db migrate",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.38",
"@ai-sdk/openai": "^4.0.41",
"@ai-sdk/openai-compatible": "^3.0.30",
"@ai-sdk/vue": "^4.0.65",
"@comark/nuxt": "^0.6.2",
"@iconify-json/lucide": "^1.2.102",
"@libsql/client": "^0.17.2",
"@nuxt/image": "^2.0.0",
"@nuxt/ui": "^4.10.0",
"@nuxthub/core": "^0.10.7",
"@unovis/ts": "^1.6.4",
"@vueuse/core": "^14.4.0",
"ai": "^7.0.65",
"better-auth": "^1.6.28",
"date-fns": "^4.4.0",
"drizzle-orm": "^0.45.2",
"exceljs": "^4.4.0",
"mailparser": "^3.9.8",
"mupdf": "^1.27.0",
"nuxt": "^4.5.2",
"nuxt-charts": "^2.1.4",
"nuxt-csurf": "^1.6.5",
"officeparser": "^7.5.1",
"sharp": "^0.35.3",
"shiki": "^4.0.2",
"striptags": "3.2.0",
"tailwindcss": "^4.2.2",
"vercel-minimax-ai-provider": "^0.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@nuxt/eslint": "^1.15.2",
"@types/mailparser": "^3.4.6",
"@types/node": "^26.2.0",
"drizzle-kit": "^0.31.10",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"vue-tsc": "^3.2.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,vue,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,scss,html}": "prettier --write"
},
"packageManager": "pnpm@10.34.5"
}