-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.71 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"type": "module",
"devDependencies": {
"@cspell/dict-ru_ru": "^2.2.1",
"@digitak/esrun": "^3.2.26",
"@intlify/unplugin-vue-i18n": "^5.2.0",
"@nolebase/ui": "^2.2.2",
"@nolebase/vitepress-plugin-enhanced-readabilities": "^2.2.2",
"@nolebase/vitepress-plugin-git-changelog": "^2.2.2",
"@octokit/core": "^6.1.2",
"@rollup/plugin-yaml": "^4.1.2",
"@types/node": "^20.14.8",
"cspell": "^8.10.4",
"markdown-it-task-lists": "^2.1.1",
"ora": "^8.0.1",
"vitepress": "^1.0.2",
"vitepress-markdown-timeline": "^1.2.1",
"vitepress-plugin-tabs": "^0.5.0",
"yargs": "^17.7.2",
"yaspeller": "^10.0.1"
},
"dependencies": {
"remark-cli": "^12.0.1",
"remark-lint-no-multiple-toplevel-headings": "^4.0.0",
"transliteration": "^2.3.5",
"unocss": "^0.58.6"
},
"remarkConfig": {
"plugins": [
"remark-lint-no-multiple-toplevel-headings"
]
},
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"docs:check": "npm run docs:spell-check && docs:remark-full",
"docs:spell-check": "npm run docs:yaspeller-full && npm run docs:cspell-full",
"docs:yaspeller-full": "yaspeller --dictionary .yaspeller/frontmatter.json:.yaspeller/apps\\&companies.json:.yaspeller/names.json ./docs --only-errors",
"docs:yaspeller": "yaspeller --dictionary .yaspeller/frontmatter.json:.yaspeller/apps\\&companies.json:.yaspeller/names.json",
"docs:cspell-full": "npx cspell --show-context --show-suggestions --color ./docs/**/*.md",
"docs:cspell": "npx cspell --show-context --show-suggestions --color",
"docs:remark-full": "remark ./docs --frail",
"docs:remark": "remark"
}
}