-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "vitepress-blog",
"version": "2.0.1",
"description": "Chi's blog",
"author": "Chi's",
"license": "MIT",
"keywords": [
"vitepress",
"pnpm",
"blog"
],
"main": "index.js",
"scripts": {
"dev": "vitepress dev docs --port=8173",
"build": "vitepress build docs",
"serve": "vitepress serve docs --port=8173",
"deploy": "bash deploy.sh",
"clear": "rimraf node_modules&&pnpm install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:prettier": "prettier --write --loglevel warn \"docs/**/*.{js,json,css,less,scss,vue,html,md}\""
},
"dependencies": {
"@docsearch/css": "^3.5.1",
"@docsearch/js": "^3.5.1",
"@types/node": "^20.4.2",
"@vueuse/core": "^10.2.1",
"medium-zoom": "^1.0.8",
"unocss": "^0.53.5",
"vite": "^4.4.5",
"vitepress": "1.0.0-alpha.72",
"vue": "^3.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"eslint": "^8.45.0",
"pnpm": "^8.6.11",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"volta": {
"node": "16.19.1"
}
}