-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 963 Bytes
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
{
"name": "konflux-ci-docs",
"devDependencies": {
"@antora/collector-extension": "^1.0.3",
"@antora/lunr-extension": "^1.0.0-alpha.13",
"antora": "^3.1.15"
},
"overrides": {
"glob-parent": "6.0.2"
},
"scripts": {
"api-gen": "./hack/gen-api-docs.sh",
"gen-build-tasks-docs": "./hack/gen-build-tasks-docs.sh",
"build": "antora generate --clean --fetch antora-playbook.yml",
"generate-llms-txt": "bash hack/generate-llms-txt.sh public/llms.txt",
"preview:netlify": "netlify deploy --dir public",
"lint:docs": "./hack/vale-check.sh",
"lint:docs:errors": "./hack/vale-check.sh --minAlertLevel=error",
"lint:docs:changed": "git diff --name-only --diff-filter=d HEAD | grep '\\.adoc$' | xargs -r ./hack/vale-check.sh",
"lint:docs:changed:errors": "git diff --name-only --diff-filter=d HEAD | grep '\\.adoc$' | xargs -r ./hack/vale-check.sh --minAlertLevel=error"
},
"engines": {
"node": "18"
}
}