chore: configure typedoc

This commit is contained in:
2025-03-10 07:35:56 +01:00
parent 164312794b
commit c380172960
4 changed files with 151 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
{
"name": "@cis-oss/pushover",
"version": "0.0.1",
"type": "module",
"description": "A client for Pushover, a service for sending notifications. Written in TypeScript. Supports sending to multiple users.",
"keywords": [
"pushover",
@@ -23,16 +24,17 @@
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build": "tsc && typedoc",
"lint": "eslint --cache .",
"typecheck": "tsc --noEmit",
"format:check": "prettier --check .",
"check": "pnpm lint && pnpm typecheck && pnpm format:check",
"prepare": "husky",
"docs:create": "typedoc src/index.ts"
"docs:create": "typedoc"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
@@ -40,6 +42,11 @@
"lint-staged": "^15.4.3",
"prettier": "3.5.3",
"typedoc": "^0.27.9",
"typedoc-plugin-coverage": "^3.4.1",
"typedoc-plugin-extras": "^4.0.0",
"typedoc-plugin-inline-sources": "^1.2.1",
"typedoc-plugin-mdn-links": "^5.0.1",
"typedoc-plugin-zod": "^1.4.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.26.0"
},
@@ -47,5 +54,8 @@
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --cache --fix",
"*.{js,ts,jsx,tsx,json,css,md}": "prettier --write"
},
"dependencies": {
"zod": "^3.24.2"
}
}