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

@pepemon42069/typikon

v1.1.0

Published

Monospace pixel font. 10×18 grid. Byzantine letterforms for terminals and protocol interfaces.

Readme

TYPIKON

Monospace pixel font. 10×18 grid. Byzantine letterforms for terminals and protocol interfaces.

Typikon specimen

About

Typikon is a monospace pixel font built at the intersection of Byzantine manuscript tradition and cypherpunk aesthetics. The letterforms borrow from the angular serifs and faceted bowls of chancery hands, compressed into a tall, narrow 10:18 aspect ratio that echoes the elongated proportions of mosaic tesserae and icon panels. Every glyph sits on a strict 10×18 pixel grid — no subpixel hinting, no interpolation, no smoothing.

Two weights are included: Regular (2px stroke) and Light (1px stroke).

The font is designed for the protocol layer: terminals, code editors, log output, and cryptographic interfaces. Its specimen text weaves Byzantine liturgical metaphor with the primitives of trustless systems — commit-reveal schemes, zero-knowledge proofs, Sybil resistance. The terminal as digital narthex; the hash as gold leaf.

Details

  • 191 glyphs — uppercase, lowercase, digits, punctuation, Latin Extended (128–255)
  • Weights: Regular (2px stroke), Light (1px stroke)
  • Formats: TTF, WOFF2
  • Disambiguation pairs for terminal legibility: 0/O, 1/l/I, S/5, 8/B

Installation

npm

npm install @pepemon42069/typikon

Import in your JS/TS entry point:

import '@pepemon42069/typikon';

Then use it in CSS:

body {
  font-family: 'Typikon', monospace;
}

/* Light weight */
.light {
  font-family: 'Typikon', monospace;
  font-weight: 300;
}

Works with Vite, webpack, and other bundlers.

Manual

cp typikon.ttf typikon-light.ttf ~/.local/share/fonts/
fc-cache -f

Web (self-hosted)

@font-face {
  font-family: 'Typikon';
  src: url('typikon.woff2') format('woff2'),
       url('typikon.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Typikon';
  src: url('typikon-light.woff2') format('woff2'),
       url('typikon-light.ttf') format('truetype');
  font-weight: 300;
}

Platform

Built and tested on Linux only.

License

SIL Open Font License v1.1