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

@cube-drone/marquee-fonts

v0.4.0

Published

The Marquee grab bag: 31 self-hosted display faces (SIL OFL + one Apache-2.0), with external and inline-base64 @font-face helpers

Readme

@cube-drone/marquee-fonts

The grab bag: the curated faces behind Marquee's closed font name list — 31 WOFF2s (latin subsets), each with its license text beside it. The OFL permits exactly this redistribution and requires the license ride along; thirty faces are SIL OFL, and the one exception is special-elite (Astigmatic), which is Apache 2.0 (special-elite.LICENSE.txt).

This package is optional. The renderer works fully without it: every font name degrades to its fallback stack in @cube-drone/marquee-css, readable always. Install it when you want the actual faces.

Self-hosted on principle: an embedder serves these files itself. Linking a third-party font CDN leaks every reader's IP per page view — fonts are a tracking vector, and care-modes apply to them like any other fetch.

Two deliveries, both fed by the renderer's usedFontTokens(html) scan so you ship exactly what your pages wear:

import { usedFontTokens } from "@cube-drone/marquee-html-renderer";
import { externalFontFaces, fontFilePath, inlineFontFaces } from "@cube-drone/marquee-fonts";

const tokens = usedFontTokens(body);

// a real site: copy fontFilePath(t) for each token next to your pages, then
const fontsCss = externalFontFaces(tokens, "fonts/");

// a self-contained single file: the bytes come along as base64
const styles = inlineFontFaces(tokens);

fonts.css at the package root declares all faces (urls relative to the package — serve its fonts/ beside it) for the lazy path; browsers only fetch faces that rendered text actually uses, so even that costs readers nothing for unused names.

The vocabulary itself (token → face) lives with the renderer; this package's manifest is held in lockstep by its tests. npm run fetch-fonts (re)downloads faces and licenses from Google Fonts and regenerates fonts.css — the only thing that ever talks to a font CDN, so readers never do. Faces are display faces, latin subsets only — not body-text workhorses.