| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "docsy",
- "version": "0.12.0",
- "version.next": "0.12.1-dev-unreleased",
- "repository": "github:google/docsy",
- "homepage": "https://www.docsy.dev",
- "license": "Apache-2.0",
- "scripts": {
- "_cd:docs": "cd userguide &&",
- "_check:format": "npx prettier --check *.md",
- "_commit:public": "npm run cd:docs -- _commit:public",
- "_cp:bs-rfs": "npx cpy 'node_modules/bootstrap/scss/vendor/*' assets/_vendor/bootstrap/scss/",
- "_diff:check": "git diff --name-only --exit-code",
- "_gen-chroma-styles": "bash -c tools/gen-chroma-styles.sh && bash -c 'tools/gen-chroma-styles.sh -s onedark -o _dark.scss'",
- "_mkdir:hugo-mod": "node tools/mkdirp-hugo-mod.js ..",
- "_prepare": "npm run _cp:bs-rfs && npm run _gen-chroma-styles && npm run get:hugo-modules",
- "build:preview": "npm run cd:docs -- build:preview --",
- "build:production": "npm run cd:docs -- build:production --",
- "build": "npm run cd:docs -- build --",
- "cd:docs": "npm run _cd:docs -- npm run",
- "check:format": "npm run _check:format || (echo '[help] Run: npm run fix:format'; exit 1)",
- "check:links:internal": "npm run cd:docs check:links:internal",
- "check:links": "npm run cd:docs check:links",
- "check": "npm run check:format",
- "ci:post": "npm run fix:format && npm run _diff:check",
- "ci:prepare": "npm run docs-install && npm run _prepare && npm run _diff:check",
- "docs-install": "npm run _cd:docs -- npm install",
- "fix:format": "npm run _check:format -- --write && npm run cd:docs fix:format",
- "get:hugo-modules": "node tools/getHugoModules/index.mjs",
- "postinstall": "npm run _mkdir:hugo-mod",
- "serve": "npm run cd:docs serve",
- "test:all": "npm run ci:prepare && npm run check && npm run cd:docs test && npm run ci:post",
- "test": "npm run check && npm run cd:docs test",
- "update:dep": "npm install --save-exact @fortawesome/fontawesome-free@latest bootstrap@latest",
- "update:hugo": "npm install --save-exact -D hugo-extended@latest",
- "update:pkgs": "npx npm-check-updates -u && npm run cd:docs update:pkgs"
- },
- "dependencies": {
- "@fortawesome/fontawesome-free": "6.7.2",
- "bootstrap": "5.3.6"
- },
- "devDependencies": {
- "cpy-cli": "^5.0.0",
- "hugo-extended": "0.147.5",
- "netlify-cli": "^21.5.0",
- "npm-check-updates": "^18.0.1",
- "prettier": "^3.5.3"
- },
- "engines": {
- "node": ">=22"
- },
- "spelling": "cSpell:ignore docsy hugo fortawesome fontawesome onedark twbs netlify pkgs userguide -"
- }
|