typedoc-github-theme
Version:
Elegant and seamless look and feel for your TypeScript documentation on GitHub Pages
40 lines • 1.16 kB
JSON
{
"name": "typedoc-github-theme",
"description": "Elegant and seamless look and feel for your TypeScript documentation on GitHub Pages",
"version": "0.4.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": "https://github.com/JulianWowra/typedoc-github-theme",
"homepage": "https://julianwowra.github.io/typedoc-github-theme/",
"author": "Julian Wowra <development@julianwowra.de>",
"license": "MIT",
"peerDependencies": {
"typedoc": "~0.28.0"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "^18.19.130",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"prettier": "3.8.1",
"typedoc": "~0.28.17",
"typescript": "5.9.3",
"typescript-eslint": "8.55.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"typedoc-theme",
"typedoc-github-theme"
],
"scripts": {
"build": "pnpm build:lib && pnpm build:docs",
"build:lib": "tsc",
"build:docs": "typedoc src --plugin ./dist/index.js",
"lint": "pnpm lint:format && pnpm lint:code",
"lint:code": "eslint .",
"lint:format": "prettier --check ."
}
}