-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint": "eslint --fix",
"lint:md": "markdownlint '**/*.md'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss}'",
"vercel-build": "vitepress build"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-plugin-vue": "^10.0.0",
"globals": "^16.0.0",
"lint-staged": "^15.4.3",
"markdown-it-mathjax3": "^4.3.2",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.26.1",
"vitepress": "^1.6.3",
"vue-eslint-parser": "^10.1.1"
},
"dependencies": {
"markdown-it-mathjax3": "^4.3.2",
"v-tooltip": "^2.1.3",
"vue-clipboard2": "^0.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
],
"*.md": [
"yarn lint:md"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}