-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
{
"private": true,
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"dev": "vite --host",
"build": "vite-ssg build && pnpm build:post",
"build:post": "run-p -c gen:rss gen:sitemap",
"serve": "vite preview --host",
"lint": "eslint .",
"cz": "czg",
"gen:rss": "tsx ./build/node/rss.ts",
"gen:sitemap": "tsx ./build/node/sitemap.ts"
},
"dependencies": {
"@unocss/reset": "^0.50.4",
"@vueuse/core": "^9.13.0",
"@vueuse/head": "^1.1.19",
"dayjs": "^1.11.7",
"nprogress": "^0.2.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.36.0",
"@iconify/json": "^2.2.32",
"@types/fs-extra": "^11.0.1",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.5",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"chalk": "^5.2.0",
"cz-git": "^1.5.3",
"czg": "^1.5.3",
"diacritics": "^1.3.0",
"eslint": "^8.35.0",
"fast-glob": "^3.2.12",
"feed": "^4.2.2",
"fs-extra": "^11.1.0",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-container": "^3.0.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-shiki": "0.8.0",
"markdown-it-table-of-contents": "^0.6.0",
"markdown-it-task-checkbox": "^1.0.6",
"medium-zoom": "^1.0.8",
"npm-run-all": "^4.1.5",
"pathe": "^1.1.0",
"pnpm": "^7.29.1",
"sitemap": "^7.1.1",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"unocss": "^0.50.4",
"unplugin-auto-import": "^0.15.1",
"unplugin-icons": "^0.15.3",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.1.4",
"vite-plugin-pages": "^0.28.0",
"vite-plugin-pwa": "^0.14.4",
"vite-plugin-vue-layouts": "^0.8.0",
"vite-plugin-vue-markdown": "^0.22.4",
"vite-ssg": "^0.22.1"
},
"eslintConfig": {
"extends": "@antfu"
}
}