-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "unomcp-docs",
"type": "module",
"private": true,
"packageManager": "pnpm@10.15.1",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@nuxt/content": "^3.8.2",
"@nuxt/eslint": "^1.10.0",
"@nuxt/icon": "^2.1.0",
"@tailwindcss/vite": "^4.1.17",
"@vueuse/core": "^14.0.0",
"@vueuse/nuxt": "^14.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.39.1",
"lucide-vue-next": "^0.554.0",
"nuxt": "^4.2.1",
"nuxt-og-image": "^5.1.12",
"reka-ui": "^2.6.0",
"shadcn-nuxt": "2.3.3",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"vue": "^3.5.25",
"vue-router": "^4.6.3"
},
"devDependencies": {
"lint-staged": "^16.2.7",
"nuxt-shiki": "0.3.1",
"shiki": "^3.17.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*": "eslint --fix"
}
}