-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.43 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.43 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "blog",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.26.1",
"engines": {
"node": ">=22"
},
"scripts": {
"prepare": "simple-git-hooks",
"dev": "vitepress dev",
"build": "vue-tsc -b && vitepress build",
"preview": "vitepress preview",
"lint": "eslint . -f mo",
"fix": "eslint . -f mo --fix",
"typecheck": "vue-tsc --noEmit",
"generate-pwa-assets": "pwa-assets-generator"
},
"dependencies": {
"@floating-ui/vue": "^1.1.9",
"@vueuse/core": "^14.1.0",
"@vueuse/integrations": "^14.1.0",
"cva": "npm:class-variance-authority@^0.7.1",
"focus-trap": "^7.7.0",
"gitalk": "^1.8.0",
"lru-cache": "^11.2.4",
"mark.js": "^8.11.1",
"medium-zoom": "^1.1.0",
"minisearch": "^7.2.0",
"radix-vue": "^1.9.17",
"tailwind-merge": "^3.4.0",
"unocss": "^66.5.10",
"vitepress-plugin-group-icons": "^1.6.5",
"vue": "^3.5.26",
"vue-sonner": "^2.0.9",
"zdog": "^1.1.3"
},
"devDependencies": {
"@bernankez/eslint-config": "^4.0.1",
"@bernankez/theme": "^0.4.2",
"@iconify-json/line-md": "^1.2.11",
"@iconify-json/lucide": "^1.2.82",
"@nolebase/vitepress-plugin-git-changelog": "^2.18.2",
"@shikijs/vitepress-twoslash": "^3.20.0",
"@types/mark.js": "^8.11.12",
"@types/node": "^24.10.4",
"@types/zdog": "^1.1.7",
"@unocss/eslint-plugin": "^66.5.10",
"@unocss/preset-mini": "^66.5.10",
"@unocss/reset": "^66.5.10",
"@vite-pwa/assets-generator": "^1.0.2",
"@vite-pwa/vitepress": "^1.1.0",
"@vitejs/plugin-vue": "^6.0.3",
"@vitejs/plugin-vue-jsx": "^5.1.2",
"confbox": "^0.2.2",
"eslint": "^9.39.2",
"eslint-formatter-mo": "^2.4.1",
"eslint-plugin-format": "^1.1.0",
"gray-matter": "^4.0.3",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"unplugin-icons": "^22.5.0",
"vite": "^7.3.0",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-vue-devtools": "^7.7.9",
"vitepress": "^1.6.4",
"vitepress-plugin-lightbox": "^1.0.3",
"vitepress-plugin-llms": "^1.9.3",
"vitepress-plugin-rss": "^0.4.2",
"vue-tsc": "^3.2.1",
"workbox-window": "^7.4.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks",
"vue-demi"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"eslint ."
]
}
}