-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"packageManagerStrict": false,
"scripts": {
"build": "cross-env NODE_ENV=production vite-ssg build",
"dev": "vite --port 3333 --open",
"preview": "vite preview",
"lint": "eslint .",
"compress": "esno scripts/img-compress-staged.ts"
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"dayjs": "^1.11.11",
"floating-vue": "2.0.0-beta.24",
"vue": "^3.4.26",
"vue-router": "4.2.5",
"vue-router-better-scroller": "^0.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.1",
"@iconify/json": "^2.2.206",
"@octokit/rest": "^20.1.0",
"@types/degit": "^2.8.6",
"@types/diacritics": "^1.3.3",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^13.0.8",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/prompts": "^2.4.9",
"@unhead/vue": "^1.9.9",
"@unocss/reset": "^0.58.9",
"@vitejs/plugin-vue": "^4.6.2",
"cross-env": "^7.0.3",
"degit": "^2.8.4",
"diacritics": "^1.3.0",
"eslint": "8.52.0",
"eslint-plugin-format": "^0.1.1",
"esno": "^4.7.0",
"fast-glob": "^3.3.2",
"feed": "^4.2.2",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"lint-staged": "^15.2.2",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-github-alerts": "^0.1.2",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-shikiji": "^0.9.19",
"markdown-it-table-of-contents": "^0.6.0",
"picocolors": "^1.0.0",
"pnpm": "^8.15.8",
"prompts": "^2.4.2",
"rimraf": "^5.0.5",
"sharp": "0.32.6",
"shikiji": "^0.9.19",
"shikiji-twoslash": "^0.9.19",
"simple-git": "^3.24.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.5",
"unocss": "^0.58.9",
"unplugin-auto-import": "^0.17.5",
"unplugin-icons": "^0.18.5",
"unplugin-vue-components": "^0.26.0",
"unplugin-vue-markdown": "^0.25.2",
"vite": "^5.2.11",
"vite-plugin-inspect": "^0.8.4",
"vite-plugin-pages": "^0.32.1",
"vite-ssg": "^0.23.7",
"vite-svg-loader": "^5.1.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}