-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.21 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.21 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
{
"name": "openclaw-docs",
"private": true,
"version": "0.1.0",
"description": "Standalone OpenClaw docs workspace",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"docs:bin": "node scripts/build-docs-list.mjs",
"docs:check-links": "node scripts/docs-link-audit.mjs",
"docs:check-meta": "node scripts/docs-metadata-audit.mjs",
"docs:dev": "cd docs && mint dev",
"docs:i18n": "go run ./scripts/docs-i18n",
"docs:list": "node scripts/docs-list.js",
"docs:spellcheck": "bash scripts/docs-spellcheck.sh",
"docs:spellcheck:fix": "bash scripts/docs-spellcheck.sh --write",
"docs:sync-moonshot": "tsx scripts/sync-moonshot-docs.ts",
"check:docs": "pnpm format:docs:check && pnpm lint:docs && pnpm docs:check-links",
"format:docs": "node scripts/docs-format-targets.mjs | xargs oxfmt --write",
"format:docs:check": "node scripts/docs-format-targets.mjs | xargs oxfmt --check",
"lint:docs": "pnpm dlx markdownlint-cli2",
"lint:docs:fix": "pnpm dlx markdownlint-cli2 --fix",
"docs:indexnow": "tsx scripts/submit-indexnow.ts"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.57.1",
"oxfmt": "0.36.0",
"tsx": "^4.21.0"
}
}