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

@aori/fonts

v1.0.4

Published

Aori Font System

Downloads

154

Readme

Aori Typography System

Typography System

View Typography System PDF

About

This repository contains the official Aori typography system fonts for use in web apps and marketing materials.

Installation

The official Aori typography system can be easily imported for use in frontend frameworks like Next.js, React, and Vue.

# or
bun add @aori/fonts
# or
npm install @aori/fonts
# or
yarn add @aori/fonts

Usage

Next.js Pages Router Integration

For Next.js apps using the Pages Router, import the font in your _app.tsx file:

// pages/_app.tsx
import { AoriSans } from '@aori/fonts/font/sans';
import { AoriMono } from '@aori/fonts/font/mono';

export default function App({ Component, pageProps }) {
  return (
    <>
      <style jsx global>{`
        :root {
          --font-aori-sans: ${AoriSans.style.fontFamily};
          --font-aori-mono: ${AoriMono.style.fontFamily};
        }
      `}</style>
      <Component {...pageProps} />
    </>
  );
}

Basic Font Import

Import the fonts in your root layout or app component:

// app/layout.tsx or pages/_app.tsx
import "@aori/fonts";

Tailwind Configuration

Add the Aori preset to your tailwind.config.js/ts:

/** @type {import('tailwindcss').Config} */
module.exports = {
  presets: [require("@aori/fonts/tailwind")],
  content: [
    // ...
  ],
};

Next.js Configuration

Add this to your next.config.js:

/** @type {import('next').NextConfig} */
const nextConfig = {
  // This is needed for font file loading
  webpack(config) {
    config.module.rules.push({
      test: /\.(woff|woff2|eot|ttf|otf)$/i,
      type: "asset/resource",
    });
    return config;
  },
  
  // Required for Next.js versions older than 15 to work with this package
  transpilePackages: ["@aori/fonts"],
};

module.exports = nextConfig;

Available Classes

Font Family

<div className="font-aori">Uses Aori font</div>;
{
  /* or */
}
<div className="font-sans">Uses Aori as system font</div>;

Typography Scales

<h1 className="text-aori-h1">Heading 1</h1>
<h2 className="text-aori-h2">Heading 2</h2>
<p className="text-aori-body">Body text</p>

Letter Spacing

<div className="tracking-aori-tight">Tight tracking</div>
<div className="tracking-aori-normal">Normal tracking</div>
<div className="tracking-aori-wide">Wide tracking</div>

Utility Classes

<h1 className="aori-heading-xl">Extra Large Heading</h1>
<h2 className="aori-heading-lg">Large Heading</h2>

License

See LICENSE for details.

Repository Layout

This font repository structure is inspired by Unified Font Repository v0.3.