npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kcconfigs/typedoc

v0.3.1

Published

Shared typedoc configuration

Readme

@kcconfigs/typedoc

Shared TypeDoc configuration with composable presets, themes, and plugins for generating consistent API documentation across the monorepo.

Prerequisites

  • TypeDoc: as peer dependency

Installation

pnpm add --save-dev typedoc @kcconfigs/typedoc

Install optional peer dependencies for themes and plugins as needed:

# Themes (all optional)
pnpm add --save-dev typedoc-github-theme
pnpm add --save-dev typedoc-material-theme
pnpm add --save-dev typedoc-theme-oxide
pnpm add --save-dev typedoc-rhineai-theme

# Plugins (all optional)
pnpm add --save-dev typedoc-plugin-dt-links
pnpm add --save-dev typedoc-plugin-extras
pnpm add --save-dev typedoc-plugin-include-example
pnpm add --save-dev typedoc-plugin-mdn-links
pnpm add --save-dev typedoc-plugin-missing-exports

Usage

Presets

This package provides ready-to-use presets for typedoc.jsonc:

| Name | Description | | ---------------------------- | -------------------------------------------------------------- | | @kcconfigs/typedoc/base | Bare configuration with default settings only | | @kcconfigs/typedoc/package | Single-package preset with GitHub theme and all plugins | | @kcconfigs/typedoc/root | Monorepo root preset with packages entry point strategy |

Both package and root presets enable the GitHub theme and all plugins by default. The base preset includes only the default TypeDoc settings without any themes or plugins.

Use a preset via the extends field in typedoc.jsonc:

{
  "$schema": "https://typedoc.org/schema.json",
  "extends": ["@kcconfigs/typedoc/package"]
}

For a monorepo root:

{
  "$schema": "https://typedoc.org/schema.json",
  "extends": ["@kcconfigs/typedoc/root"],
  "name": "My Workspace",
  "entryPoints": ["packages/*"]
}

Themes

Themes are imported from @kcconfigs/typedoc/themes/*:

| Import path | Theme | Peer dependency | | ---------------------------------------- | ----------------------- | ---------------------------- | | @kcconfigs/typedoc/themes/github | GitHub style | typedoc-github-theme | | @kcconfigs/typedoc/themes/material | Material Design style | typedoc-material-theme | | @kcconfigs/typedoc/themes/oxide | Rustdoc-like style | typedoc-theme-oxide | | @kcconfigs/typedoc/themes/rhineai | RhineAI style | typedoc-rhineai-theme |

All theme peer dependencies are optional.

Plugins

Plugins are imported from @kcconfigs/typedoc/plugins/*:

| Import path | Description | Peer dependency | | -------------------------------------------- | ------------------------------------------------- | ------------------------------------- | | @kcconfigs/typedoc/plugins/dtLinks | Links references to @types package declarations | typedoc-plugin-dt-links | | @kcconfigs/typedoc/plugins/extras | Extra features (footer version, last modified) | typedoc-plugin-extras | | @kcconfigs/typedoc/plugins/includeExample | Include code examples from *.example.ts files | typedoc-plugin-include-example | | @kcconfigs/typedoc/plugins/mdnLinks | Links references to MDN Web Docs | typedoc-plugin-mdn-links | | @kcconfigs/typedoc/plugins/missingExports | Include missing exports in documentation | typedoc-plugin-missing-exports | | @kcconfigs/typedoc/plugins/all | Combines all plugins above with GitHub theme | All plugin peer dependencies |

References