-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.43 KB
/
package.json
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
{
"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.2",
"@nolebase/vitepress-plugin-git-changelog": "^2.12.0",
"@types/cross-spawn": "6.0.6",
"@types/node": "22.10.10",
"@unocss/preset-icons": "65.4.3",
"autoprefixer": "10.4.20",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"markdown-it-mathjax3": "4.3.2",
"postcss": "8.5.1",
"prettier": "3.4.2",
"typescript": "5.7.3",
"unocss": "65.4.3",
"unplugin-auto-import": "19.0.0",
"vite-plugin-vue-devtools": "7.7.1",
"vitepress": "1.6.3",
"vitepress-sidebar": "1.30.2",
"vue": "3.5.13"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"dependencies": {
"@arco-design/web-vue": "2.56.3",
"@arco-plugins/vite-vue": "1.4.5",
"@icon-park/vue-next": "1.4.2",
"@mdit/plugin-footnote": "0.16.0",
"@mdit/plugin-img-size": "0.16.0",
"@mdit/plugin-mark": "0.16.0",
"@mdit/plugin-ruby": "0.16.0",
"@mdit/plugin-spoiler": "0.16.0",
"@mdit/plugin-sub": "0.16.0",
"@mdit/plugin-sup": "0.16.0",
"@vercel/analytics": "1.4.1",
"@vercel/speed-insights": "1.1.0",
"@vitejs/plugin-vue-jsx": "4.1.1",
"@vueuse/components": "12.5.0",
"@vueuse/core": "12.5.0",
"cross-spawn": "7.0.6",
"dayjs": "1.11.13",
"eslint": "9.19.0",
"eslint-plugin-vue": "9.32.0",
"feed": "^4.2.2",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"markdown-it-implicit-figures": "0.12.0",
"medium-zoom": "1.1.0",
"p-map": "7.0.3",
"pinia": "2.3.1",
"pinia-plugin-persistedstate": "4.2.0",
"postcss-plugin-px2rem": "0.8.1",
"radash": "12.1.0",
"sass": "1.83.4",
"unplugin-icons": "22.0.0",
"unplugin-vue-components": "28.0.0",
"vite": "^6.0.7",
"vitepress-plugin-comment-with-giscus": "1.1.15",
"vitepress-plugin-rss": "0.3.1",
"vue-router": "4.5.0",
"words-count": "2.0.2"
}
}