-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
34 lines (34 loc) · 958 Bytes
/
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
{
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"docs": "vitepress dev",
"build-docs": "vitepress build",
"serve-docs": "vitepress serve",
"lint": "textlint --format pretty-error **/*.md"
},
"devDependencies": {
"@shikijs/vitepress-twoslash": "^1.22.2",
"@types/express": "^4.17.21",
"@types/node": "^20.17.1",
"feed": "^4.2.2",
"gsap": "^3.12.5",
"lint-staged": "^15.2.10",
"textlint": "^13.4.1",
"textlint-filter-rule-allowlist": "^4.0.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-preset-vuejs-jp": "git+https://github.com/vuejs-jp/textlint-rule-preset-vuejs-jp.git",
"vite": "^5.4.10",
"vitepress": "1.5.0",
"vitepress-plugin-group-icons": "^1.3.0",
"vue": "^3.5.12",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.md": "textlint --format pretty-error"
}
}