-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
76 lines (76 loc) · 2.53 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
{
"name": "salvo-website",
"version": "2.0.0",
"description": "Salvo website",
"license": "MIT",
"type": "module",
"scripts": {
"docs:build": "vuepress build docs --clean-cache --clean-temp",
"docs:build-webpack": "DOCS_BUNDLER=webpack pnpm docs:build",
"docs:clean": "rimraf docs/.vuepress/.temp docs/.vuepress/.cache docs/.vuepress/dist",
"docs:dev": "vuepress dev docs --clean-cache --clean-temp",
"docs:dev-webpack": "DOCS_BUNDLER=webpack pnpm docs:dev",
"docs:serve": "http-server docs/.vuepress/dist",
"format": "prettier --write .",
"lint": "eslint --ext .cjs,.js,.ts,.vue . && prettier --check .",
"prepare": "husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.!(cjs|js|ts|vue)": "prettier --write --ignore-unknown",
"*.(cjs|js|ts|vue)": [
"eslint --fix",
"prettier --write"
],
"package.json": "sort-package-json"
},
"prettier": "prettier-config-vuepress",
"dependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.15",
"@vuepress/bundler-webpack": "2.0.0-rc.15",
"@vuepress/plugin-active-header-links": "2.0.0-rc.41",
"@vuepress/plugin-back-to-top": "2.0.0-rc.41",
"@vuepress/plugin-docsearch": "2.0.0-rc.41",
"@vuepress/plugin-external-link-icon": "2.0.0-rc.28",
"@vuepress/plugin-git": "2.0.0-rc.38",
"@vuepress/plugin-google-analytics": "2.0.0-rc.37",
"@vuepress/plugin-register-components": "2.0.0-rc.37",
"@vuepress/plugin-shiki": "2.0.0-rc.41",
"@vuepress/plugin-medium-zoom": "2.0.0-rc.41",
"@vuepress/plugin-nprogress": "2.0.0-rc.41",
"@vuepress/plugin-palette": "2.0.0-rc.37",
"@vuepress/plugin-pwa-popup": "2.0.0-rc.14",
"@vuepress/plugin-search": "2.0.0-rc.41",
"@vuepress/theme-default": "2.0.0-rc.41",
"@vuepress/utils": "2.0.0-rc.15",
"http-server": "^14.1.1",
"sass-loader": "^16.0.0",
"vue": "^3.4.38",
"vuepress": "2.0.0-rc.15"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"eslint": "^9.9.0",
"eslint-config-vuepress": "^5.1.2",
"eslint-config-vuepress-typescript": "^4.10.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prettier-config-vuepress": "^5.0.0",
"rimraf": "^6.0.1",
"sort-package-json": "^2.10.0",
"tsconfig-vuepress": "^5.0.0",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.19.0"
}
}