New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@devlander/typedoc-theme

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devlander/typedoc-theme

## Description

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@devlander/typedoc-theme

Description

This package provides a custom theme for generating documentation using TypeDoc.

Installation

Ensure you have Node.js (version >= 14) and npm (or Yarn) installed.

npm

npm install @devlander/typedoc-theme --save-dev

Yarn

yarn add @devlander/typedoc-theme --dev

Usage

To use @devlander/typedoc-theme as your theme in a TypeDoc project, follow these steps:

  • Configure TypeDoc

    Ensure your TypeDoc configuration (typedoc.json) specifies @devlander/typedoc-theme as the theme:

    {
      "theme": "@devlander/typedoc-theme"
      // Add other TypeDoc options as needed
    }
    
  • Generate Documentation

    Run TypeDoc to generate documentation using the configured theme:

    npx typedoc --theme @devlander/typedoc-theme
    

    If you have a script defined in package.json:

    npm run docs
    

    Or with Yarn:

    yarn docs
    
  • View Documentation

    Once generated, your documentation will be available in the specified output directory (default is docs/).

Configuration

Options

  • theme (required): Specify "@devlander/typedoc-theme" as the theme in your TypeDoc configuration file (typedoc.json).

Example

Here's a basic example of a typedoc.json configuration using @devlander/typedoc-theme:

{
  "theme": "@devlander/typedoc-theme",
  "out": "docs/",
  "exclude": ["node_modules/**/*"]
}

License

This package is licensed under the MIT License.

Keywords

typedoc-theme

FAQs

Package last updated on 18 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts