-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.1 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.1 KB
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
{
"type": "module",
"devDependencies": {
"@eslint/js": "^9.34.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^9.33.0",
"markdownlint-cli": "^0.38.0",
"prettier": "^3.6.2",
"stylelint": "^16.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0",
"vitepress": "^2.0.0-alpha.12"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint . --ext .js,.vue --fix",
"lint:css": "stylelint \"docs/**/*.css\" --fix --allow-empty-input",
"format": "prettier --write \"**/*.{js,vue,json,css,md,html,yml,yaml}\"",
"format:md-emphasis": "find docs -name '*.md' -exec sed -i 's/_\\([^_]*\\)_/*\\1*/g' {} \\;",
"lint:md": "markdownlint docs/**/*.md --fix",
"lint:all": "npm run lint && npm run lint:css && npm run lint:md && npm run format && npm run format:md-emphasis"
}
}