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

@royalfig/gtb

v4.0.9

Published

A modern tool for developing and building Ghost themes with esbuild, Tailwind, and Live Reload

Readme

GTB (Ghost Theme Builder)

A development framework and build tool for Ghost themes.

gtb provides a development environment with live reload, CSS injection, critical asset inlining, and image optimization.

Project Structure

your-theme/
├── src/
│   ├── js/              # TypeScript / JavaScript entry points
│   │   └── critical/    # Critical JS (inlined into templates)
│   ├── css/             # CSS entry points
│   │   └── critical/    # Critical CSS (inlined into templates)
│   └── img/             # Images (optimized via sharp to assets/built/img)
├── assets/
│   ├── fonts/           # Static font files
│   └── built/           # Build output (js, css, img)
├── locales/             # Translation files
├── partials/            # Handlebars partials
├── default-template.hbs # Your template (rendered to default.hbs)
└── gtb.config.js        # Optional: esbuild overrides only

Features

  • Fast builds with esbuild
  • Live reload with CSS hot injection
  • Critical CSS/JS inlining
  • Dark mode support
  • TypeScript / JavaScript compilation
  • Image compression/resizing
  • Environment diagnostics (doctor command)
  • Theme validation with gscan

Getting Started

1. Initialize a New Theme

In an empty directory, run:

npx @royalfig/gtb init

This will:

  1. Scaffold the entire Ghost theme directory structure.
  2. Automatically detect local Ghost instances and symlink your theme.

2. Start Developing

npx gtb dev --open

Starts the dev server, watches all files, and opens your local Ghost site in the browser.


Commands

| Command | Description | | :----------- | :---------------------------------------------------------------------------------------------------- | | gtb dev | Starts the watch process with live reload and CSS hot injection. Use --open to auto-launch browser. | | gtb build | Runs a production build (minified, no source maps). | | gtb init | Scaffolds a new theme and creates a symlink to a local Ghost instance. | | gtb lint | Runs ESLint (JS/TS) and Stylelint (CSS) with auto-fix enabled. | | gtb check | Validates your theme against Ghost's official gscan engine. | | gtb zip | Optimizes images and packages the theme for distribution. | | gtb deploy | Zips theme and deploys directly to your Ghost site via the Admin API. | | gtb doctor | Checks your environment for compatibility and configuration issues. |


Critical Assets & Dark Mode

gtb handles performance-critical patterns natively:

  • Critical CSS/JS: Any file placed in src/css/critical/ or named critical.ts will be built as a critical asset and automatically inlined into default.hbs.
  • Dark Mode: The init command generates a critical.ts that prevents theme flickering and a darkMode.ts for toggle logic.

[!WARNING] Make changes to default-template.hbs. On dev/build, this file is rendered as default.hbs with critical assets inlined.


Configuration (gtb.config.js)

gtb is zero-config by default — it reads from src/js/ and src/css/, outputting to assets/built/. You can customize esbuild options only:

/** @type {import('@royalfig/gtb').GtbConfig} */
export default {
  esbuild: {
    target: "esnext",
    external: ["node-fetch"],
  },
};

Requirements

  • Node.js: v18, v20, or v22 (LTS versions). gtb will warn you if your Node version is incompatible with Ghost.
  • Ghost CLI: Required for local development features (init, dev).

Created by Ryan Feigenbaum