-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.44 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.44 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
{
"private": true,
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"scripts": {
"prepare": "husky"
},
"devDependencies": {
"@textlint-ja/textlint-rule-no-dropping-i": "^3.0.0",
"@textlint-ja/textlint-rule-no-insert-dropping-sa": "^2.0.1",
"@textlint-ja/textlint-rule-no-insert-re": "^1.0.2",
"@textlint-ja/textlint-rule-preset-ai-writing": "^1.6.1",
"dprint": "^0.50.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"textlint": "^15.4.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-plugin-latex2e": "^1.2.1",
"textlint-rule-doubled-spaces": "^1.0.2",
"textlint-rule-ja-no-orthographic-variants": "^2.0.0",
"textlint-rule-ja-overlooked-typo": "^0.0.1",
"textlint-rule-no-kangxi-radicals": "^0.2.2",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-prefer-tari-tari": "^1.0.3",
"textlint-rule-preset-ja-engineering-paper": "^1.0.4",
"textlint-rule-preset-ja-spacing": "^2.4.3",
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
"textlint-rule-preset-jtf-style": "^3.0.3",
"textlint-rule-terminology": "^5.2.16"
},
"lint-staged": {
"*.tex": [
"textlint --fix"
],
"*.{json,md,toml,yml,yaml}": [
"dprint fmt"
],
"*.py": [
"ruff check --fix",
"ruff format"
]
}
}