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

@viasat/beam-fonts

v2.1.1

Published

Typography assets for the Beam Design System including Source Sans Pro, Uni Neue, and internationalization support

Readme

🔤 Beam Fonts

Typography assets for the Beam Design System including Source Sans Pro, Uni Neue, and comprehensive internationalization support for Arabic, Hebrew, Japanese, and Chinese languages.

🔖 Table of Contents

  1. ✨ Features
  2. 💻 Installation
  3. 🛠️ Usage
  4. 🔤 Font Families
  5. 📁 File Structure

Features

  • Source Sans Pro - Primary typeface for body text and UI elements
  • Uni Neue - Display typeface for headings and emphasis
  • Multi-language Support - Noto Sans variants for Arabic, Hebrew, Japanese (JP), and Chinese (ZH)
  • Multiple Formats - WOFF and WOFF2 for optimal browser support and performance
  • Framework Support - Optimized imports for standard React and Next.js applications

Installation

npm install @viasat/beam-fonts
yarn add @viasat/beam-fonts
pnpm add @viasat/beam-fonts

Usage

Standard React Application

Import the default font stylesheet in your application entry point:

import '@viasat/beam-fonts/styles.css';

Next.js Application

Next.js requires fonts to be served from the public directory. Follow these steps:

1. Copy Fonts to Public Directory

Add a postinstall script to your package.json:

{
  "scripts": {
    "postinstall": "cp -R node_modules/@viasat/beam-fonts/assets public/fonts"
  }
}

Run the script:

npm run postinstall

2. Import Next.js Font Styles

Use the Next.js-optimized stylesheet in your root layout:

// app/layout.tsx or pages/_app.tsx
import '@viasat/beam-fonts/styles.nextjs.css';

Direct SCSS Import

If you need to customize font loading or work directly with SCSS:

@use '@viasat/beam-fonts/scss/source-sans';
@use '@viasat/beam-fonts/scss/uni-neue';

// Or import specific language fonts
@use '@viasat/beam-fonts/scss/noto-sans-arabic';
@use '@viasat/beam-fonts/scss/noto-sans-hebrew';
@use '@viasat/beam-fonts/scss/noto-sans-jp';
@use '@viasat/beam-fonts/scss/noto-sans-zh';

💡 Note: Font file paths are handled automatically using relative paths. Modern bundlers (Webpack, Vite, Rollup, etc.) will resolve the font files from node_modules and copy them to your output directory without any additional configuration.

Font Families

Source Sans Pro

Primary typeface for body text, UI components, and general content.

  • Weights: Regular (400), Semi-Bold (600), Bold (700)
  • Styles: Normal, Italic
  • Format: WOFF, WOFF2

Uni Neue

Display typeface for headings, titles, and emphasis.

  • Weights: Book (300), Regular (400), Bold (700), Heavy (900)
  • Format: WOFF, WOFF2

Noto Sans (Multi-language)

Comprehensive language support for international applications.

Variants:

  • Noto Sans Arabic - Full Arabic script support
  • Noto Sans Hebrew - Full Hebrew script support
  • Noto Sans JP - Japanese language support
  • Noto Sans SC - Simplified Chinese support

Weights: Thin (100), ExtraLight (200), Light (300), Regular (400), Medium (500), SemiBold (600), Bold (700), ExtraBold (800), Black (900)
Format: TTF

File Structure

@viasat/beam-fonts/
├── styles.css          # Standard usage
├── styles.nextjs.css   # Next.js optimized
├── scss/               # Individual SCSS modules
│   ├── source-sans.scss
│   ├── uni-neue.scss
│   ├── noto-sans-arabic.scss
│   ├── noto-sans-hebrew.scss
│   ├── noto-sans-jp.scss
│   └── noto-sans-zh.scss
└── assets/             # Font files
    ├── source-sans/
    ├── uni-neue/
    ├── noto-sans-arabic/
    ├── noto-sans-hebrew/
    ├── noto-sans-jp/
    └── noto-sans-zh/

License

MIT © Viasat