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 🙏

© 2025 – Pkg Stats / Ryan Hefner

typedoc-rhineai-theme

v1.2.0

Published

A carefully designed, detail-refined GitHub-style TypeDoc theme.

Downloads

672

Readme

Features

  • GitHub-Style Design - Clean, familiar interface inspired by GitHub's documentation style
  • Dark Mode Support - Automatic theme switching based on system preferences
  • Responsive Layout - Works seamlessly on desktop, tablet, and mobile devices
  • Syntax Highlighting - Beautiful code blocks with language-specific highlighting
  • Zero Configuration - Works out of the box with sensible defaults
  • Fast & Lightweight - Optimized for performance with minimal bundle size

Preview

Installation

# Using npm
npm install typedoc-rhineai-theme --save-dev

# Using yarn
yarn add typedoc-rhineai-theme --dev

# Using pnpm
pnpm add typedoc-rhineai-theme --save-dev

# Using bun
bun add typedoc-rhineai-theme --dev

Requirements

  • Node.js >= 18.0.0
  • TypeDoc ~0.28

What is TypeDoc?

TypeDoc is a documentation generator for TypeScript projects. It reads your TypeScript source code and JSDoc comments, then generates static HTML documentation automatically.

If you're new to TypeDoc, visit typedoc.org to learn how to get started.

Usage

Basic Setup

Add the theme to your typedoc.json configuration file:

{
  "$schema": "https://typedoc.org/schema.json",
  "name": "My Project",
  "entryPoints": ["./src"],
  "out": "./docs",
  "plugin": ["typedoc-rhineai-theme"]
}

Then run TypeDoc:

npx typedoc

Command Line Usage

You can also use the theme directly from the command line:

npx typedoc --plugin typedoc-rhineai-theme --entryPoints ./src --out ./docs

Programmatic Usage

import { Application } from 'typedoc';

const app = await Application.bootstrap({
  entryPoints: ['./src'],
  plugin: ['typedoc-rhineai-theme'],
});

const project = await app.convert();
if (project) {
  await app.generateDocs(project, './docs');
}

Development

Prerequisites

  • Bun - Fast JavaScript runtime and package manager

Setup

# Clone the repository
git clone https://github.com/RhineAI/typedoc-rhineai-theme.git
cd typedoc-rhineai-theme

# Install dependencies
bun install

# Build the project
bun run build

Scripts

| Script | Description | |--------|-------------| | bun run build | Compile TypeScript to JavaScript | | bun run example | Build and preview the example documentation | | bun run type:check | Run TypeScript type checking | | bun run lint | Run ESLint and fix issues | | bun run lint:check | Run ESLint without fixing | | bun run format | Format code with Prettier | | bun run format:check | Check code formatting |

Project Structure

typedoc-rhineai-theme/
├── src/                    # Source code
│   ├── assets/            # Theme assets (CSS, JS)
│   ├── partials/          # JSX template partials
│   ├── public/            # Static files (favicon, manifest)
│   ├── index.tsx          # Plugin entry point
│   └── rhineai-theme.tsx  # Theme class definition
├── example/               # Example project for testing
├── docs/                  # Generated documentation output
├── dist/                  # Compiled output
└── package.json

Issues

  1. Due to our overly aggressive UI-aesthetics-first approach, we have hidden all scrollbars. If needed, you can fork this repository and modify the CSS.
  2. Not fully tested yet, and it is still unclear whether it works well across all projects and in all UI scenarios. If you encounter any issues, please open an issue.
  3. More suitable for dark themes.

Contributing

We welcome contributions! Here's how you can help:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Guidelines

  • Follow the existing code style
  • Write clear commit messages
  • Update documentation as needed
  • Add tests for new features when applicable

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • TypeDoc - The documentation generator this theme is built for