-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "vuepress-marketplace",
"version": "1.0.0",
"private": true,
"description": "Market place for VuePress2 plugins and themes",
"type": "module",
"scripts": {
"build": "vuepress build src",
"clean-dev": "vuepress dev src --clean-cache",
"dev": "vuepress dev src",
"prepare": "husky",
"lint": "prettier --check --write .",
"lint:md": "markdownlint-cli2 '**/*.md'"
},
"license": "CC0",
"dependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.20",
"@vuepress/helper": "2.0.0-rc.82",
"sass-embedded": "1.85.1",
"vue": "3.5.13",
"vuepress": "2.0.0-rc.20",
"vuepress-shared": "2.0.0-rc.74",
"vuepress-theme-hope": "2.0.0-rc.74"
},
"devDependencies": {
"husky": "9.1.7",
"markdownlint-cli2": "0.17.2",
"nano-staged": "0.8.0",
"prettier": "3.5.3"
},
"packageManager": "[email protected]",
"nano-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.md": "markdownlint-cli2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}