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

fontpkg-yuniversus

v1.0.0

Published

Yuniversus Chinese component font, including the interior of 四 at U+F685

Downloads

401

Readme

Yuniversus

fontpkg-yuniversus packages the existing Yuniversus Chinese-component font. Its U+F685 glyph is the interior of 四, without the outer 囗. The original font outlines and character mappings are unchanged.

| Property | Value | |----------|-------| | Package | fontpkg-yuniversus | | Font file | yuniversus.ttf | | Family / full name / PostScript name | Yuniversus | | Style | Regular | | Font version | Version 1.00 | | File size | 65,524 bytes | | Glyph count | 361 | | Interior of 四 | U+F685 ("\uF685"), glyph index 206 |

Web

Import the package-relative font-face stylesheet through a bundler:

import "fontpkg-yuniversus/index.css";
<span style="font-family: 'Yuniversus'">&#xF685;</span>

The font is also available directly at fontpkg-yuniversus/yuniversus.ttf. U+F685 is a private-use mapping: always select Yuniversus explicitly.

Expo / React Native

Load the bundled asset before rendering the character:

import { useFonts } from "expo-font";
import { Text } from "react-native";

export function SiInterior() {
  const [loaded, error] = useFonts({
    Yuniversus: require("fontpkg-yuniversus/yuniversus.ttf"),
  });

  if (error) throw error;
  if (!loaded) return null;

  return <Text style={{ fontFamily: "Yuniversus", fontSize: 64 }}>{"\uF685"}</Text>;
}

Provenance

Downloaded from Dieken/typer's existing font, pinned to commit 57e6986dd9f45c9503164f62c3b66f50eb2ecd92. The upstream filename is Yuniversus.ttf; this package lowercases the filename without changing its bytes. SHA-256:

0ffc187e00636f6c08e867b57437239117e2bbfaedb15cb33e3f6e6a993ba93f

The font's cmap and original U+F685 outline were inspected during packaging.

License

Font-specific redistribution and commercial-use permissions remain unresolved. See license.md. Package metadata uses UNLICENSED until the applicable terms are established. This package has not been published.