-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 809 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.1",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "textlint 'docs/**/*.md' README.md CLAUDE.md && markdownlint-cli2 'docs/**/*.md' README.md CLAUDE.md && prettier --check .",
"lint:fix": "textlint --fix 'docs/**/*.md' README.md CLAUDE.md && markdownlint-cli2 --fix 'docs/**/*.md' README.md CLAUDE.md && prettier --write ."
},
"devDependencies": {
"markdownlint-cli2": "^0.22.0",
"prettier": "^3.8.1",
"textlint": "^15.5.2",
"textlint-rule-ja-no-abusage": "^3.0.0",
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
"textlint-rule-preset-jtf-style": "^3.0.3",
"vitepress": "^1.6.4"
}
}