-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.65 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
91
92
93
94
95
96
97
98
99
{
"name": "@mark9804/blog",
"private": true,
"type": "module",
"scripts": {
"dev": "vitepress dev docs --host",
"build": "vitepress build docs",
"serve": "vitepress serve docs",
"preview": "pnpm build && vitepress preview docs",
"prepare": "husky"
},
"lint-staged": {
"**/*.{ts,js,vue}": [
"prettier --config .prettierrc.json --write",
"git add"
],
"*.md": [
"prettier --config .prettierrc.json --write",
"git add"
]
},
"devDependencies": {
"@iconify-json/octicon": "1.2.31",
"@nolebase/vitepress-plugin-git-changelog": "2.18.2",
"@types/cross-spawn": "6.0.6",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "^4.0.0",
"@types/node": "26.1.2",
"@unocss/preset-icons": "66.7.5",
"@unocss/preset-wind3": "^66.6.8",
"autoprefixer": "10.5.4",
"markdown-it-container": "^4.0.0",
"markdown-it-mathjax3": "4.3.2",
"oxfmt": "^0.62.0",
"oxlint": "^1.57.0",
"postcss": "8.5.26",
"prettier": "3.9.6",
"typescript": "6.0.3",
"unocss": "66.7.5",
"unplugin-auto-import": "21.1.0",
"vite-plugin-vue-devtools": "8.1.1",
"vitepress": "2.0.0-alpha.19",
"vitepress-sidebar": "1.38.0",
"vue": "3.5.41"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"@vercel/speed-insights",
"esbuild",
"sharp",
"vue-demi"
]
},
"dependencies": {
"@date-fns/tz": "^1.4.1",
"@giscus/vue": "^3.1.1",
"@mdit/plugin-img-size": "1.0.2",
"@mdit/plugin-mark": "2.0.1",
"@mdit/plugin-ruby": "1.0.2",
"@mdit/plugin-spoiler": "2.0.1",
"@mdit/plugin-sub": "1.0.3",
"@mdit/plugin-sup": "1.0.3",
"@vercel/speed-insights": "^2.0.0",
"@vitejs/plugin-vue-jsx": "5.1.6",
"@vueuse/components": "12.5.0",
"@vueuse/core": "12.5.0",
"cross-spawn": "7.0.6",
"date-fns": "^4.1.0",
"entities": "^8.0.0",
"globals": "^17.0.0",
"husky": "9.1.7",
"lint-staged": "17.3.0",
"lucide-vue-next": "^1.0.0",
"markdown-it-implicit-figures": "0.12.0",
"p-map": "7.0.6",
"pinia": "3.0.4",
"pinia-plugin-persistedstate": "4.7.1",
"postcss-plugin-px2rem": "0.8.1",
"radashi": "^12.3.4",
"reka-ui": "^2.9.3",
"sass": "1.102.0",
"unplugin-icons": "23.0.1",
"unplugin-vue-components": "32.1.0",
"vite": "8.2.1",
"vitepress-plugin-rss": "0.4.4",
"vue-router": "5.2.0",
"vue-sonner": "^2.0.9",
"words-count": "2.0.2"
},
"patchedDependencies": {
"vitepress-sidebar": "patches/vitepress-sidebar.patch"
}
}