-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.52 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
{
"private": true,
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"type": "module",
"scripts": {
"dev": "vite --host --port 3333",
"build": "pnpm build:prev && vite-ssg build && pnpm build:post",
"build:prev": "run-p -c gen:og",
"build:post": "run-p -c gen:rss gen:sitemap",
"serve": "vite preview --host",
"cz": "czg",
"lint": "eslint .",
"z:image": "tsx ./build/node/zImage.cts",
"gen:sh": " tsx ./build/node/syntaxHightlight.cts",
"gen:og": " tsx ./build/node/og/main.mts",
"gen:rss": "tsx ./build/node/rss.cts",
"gen:sitemap": "tsx ./build/node/sitemap.cts"
},
"dependencies": {
"@unocss/reset": "^0.50.4",
"@vueuse/core": "^9.13.0",
"@vueuse/head": "^1.1.23",
"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.30",
"@resvg/resvg-js": "^2.4.1",
"@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",
"@unhead/vue": "^1.1.23",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vueuse/schema-org": "^2.1.2",
"cz-git": "^1.6.0",
"czg": "^1.6.0",
"eslint": "^8.36.0",
"fast-glob": "^3.2.12",
"feed": "^4.2.2",
"fs-extra": "^11.1.0",
"gray-matter": "^4.0.3",
"imagemin": "^8.0.1",
"imagemin-optipng": "^8.0.0",
"imagemin-webp": "^8.0.0",
"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.2",
"rimraf": "^4.4.0",
"shiki": "^0.14.1",
"shiki-processor": "^0.1.3",
"sitemap": "^7.1.1",
"tsx": "^3.12.5",
"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.29.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",
"x-satori": "^0.0.3"
},
"eslintConfig": {
"extends": "@antfu"
}
}