forked from geekan/MetaGPT-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 988 Bytes
/
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
{
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"format": "prettier --write --cache \"**/*.{js,ts,vue,mts,mjs,md}\""
},
"devDependencies": {
"vitepress": "1.0.0-rc.24",
"vue": "^3.3.7"
},
"dependencies": {
"@iconify/json": "^2.2.137",
"@types/dom-view-transitions": "^1.0.4",
"@types/node": "^20.8.10",
"@vitejs/plugin-vue": "^4.4.0",
"@vueuse/core": "^10.6.1",
"dayjs": "^1.11.10",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0",
"unocss": "^0.57.1",
"unplugin-auto-import": "^0.16.7",
"unplugin-icons": "^0.17.3",
"unplugin-vue-components": "^0.25.2",
"vue-gtag": "^2.0.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,vue,mts,mjs,md}": "prettier --write"
}
}