Files
docs/package.json
2025-12-21 07:38:53 +01:00

32 lines
910 B
JSON

{
"name": "docs",
"private": true,
"version": "1.0.0",
"description": "Source for the official Pi-hole documentation",
"main": "",
"repository": {
"type": "git",
"url": "git+https://github.com/pi-hole/docs.git"
},
"keywords": [],
"author": "",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/pi-hole/docs/issues"
},
"homepage": "https://docs.pi-hole.net/",
"scripts": {
"build": "zensical build --clean --strict",
"markdownlint": "markdownlint-cli2 \"**/*.md\" \"!**/node_modules/**\"",
"linkinator": "linkinator site --recurse --silent --skip \"^(?!http://localhost)\"",
"pretest": "npm run build",
"test": "npm run markdownlint && npm run linkinator",
"serve": "zensical serve --dev-addr 0.0.0.0:8000",
"start": "npm run serve"
},
"devDependencies": {
"linkinator": "^7.5.1",
"markdownlint-cli2": "0.20.0"
}
}