forked from KenjiMatsumoto/zenn-articles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.09 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.09 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "zenn-articles-temlate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "textlint --fix articles/** && markdownlint --fix articles/**",
"lint-check": "textlint articles/** && markdownlint articles/**",
"markdown-check": "markdown-link-check ./articles/** --config 'markdown-link-check.json'",
"prepare": "husky",
"create-article": "zenn new:article --publication-name omakase",
"preview": "zenn preview"
},
"lint-staged": {
"articles/**/*.md": [
"prettier --write",
"markdownlint --fix",
"textlint --fix",
"markdown-link-check --config 'markdown-link-check.json'"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.18.0",
"dependencies": {
"zenn-cli": "^0.2.3"
},
"devDependencies": {
"@proofdict/textlint-rule-proofdict": "^3.1.2",
"@textlint-ja/textlint-rule-no-synonyms": "^1.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"markdown-link-check": "^3.13.7",
"markdownlint-cli": "^0.45.0",
"prettier": "^3.6.2",
"sudachi-synonyms-dictionary": "^15.0.0",
"textlint": "^15.2.2",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-ja-hiragana-fukushi": "^1.3.0",
"textlint-rule-ja-hiragana-hojodoushi": "^1.1.0",
"textlint-rule-ja-hiragana-keishikimeishi": "^1.1.0",
"textlint-rule-ja-no-abusage": "^3.0.0",
"textlint-rule-ja-no-inappropriate-words": "^2.0.0",
"textlint-rule-ja-no-mixed-period": "^3.0.2",
"textlint-rule-ja-overlooked-typo": "^0.0.1",
"textlint-rule-ja-space-around-code": "^2.4.2",
"textlint-rule-max-ten": "^5.0.0",
"textlint-rule-no-doubled-conjunction": "^3.0.0",
"textlint-rule-no-doubled-conjunctive-particle-ga": "^3.0.0",
"textlint-rule-no-doubled-joshi": "^5.1.1",
"textlint-rule-no-dropping-the-ra": "^3.0.0",
"textlint-rule-no-mix-dearu-desumasu": "^6.0.4",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-preset-ja-spacing": "^2.4.3",
"textlint-rule-preset-ja-technical-writing": "^12.0.2"
}
}