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

@flyos/design-system-emoji-pack

v1.0.0

Published

Optional animated-emoji asset pack for @flyos/design-system — Microsoft Fluent emoji (MIT), recompressed to 128px animated WebP plus frame-0 stills.

Readme

@flyos/design-system-emoji-pack

Optional animated-emoji asset pack for @flyos/design-system.

Artwork is Microsoft Fluent Emoji (MIT), recompressed to 128px animated WebP with the loop count encoded as 1, plus a byte-identically-framed frame-0 still per emoji. Nothing in the design system requires this package: install it only if you want animated emoji.

Install

npm install --legacy-peer-deps @flyos/design-system-emoji-pack

Pin the version exactly (no ^). The manifest carries catalogVersion, so a design-system-catalog ↔ pack skew is detectable; a skew warns and degrades, it never blocks startup.

Wire it up

  1. Serve the assets from your own origin — add an angular.json asset glob:

    {
      "glob": "**/*",
      "input": "node_modules/@flyos/design-system-emoji-pack/assets",
      "output": "/emoji"
    }
  2. Register the design-system provider in your app config:

    import { provideFlyEmojiPack } from '@flyos/design-system';
    import { flyEmojiPackManifest } from '@flyos/design-system-emoji-pack';
    
    providers: [provideFlyEmojiPack('/emoji', flyEmojiPackManifest)];
  3. Opt a surface in — e.g. <fly-emoji-picker emojiAnimation="replace" />.

Serve /emoji/ with long-lived immutable cache headers: filenames are not content-hashed, so the design system appends ?v={manifest.version} and an asset refresh bumps that version.

Contents

manifest.json          { version, catalogVersion, entries: { <id>: { anim, still, durationMs } } }
assets/anim/<id>.webp  loop=1 animated, 128px
assets/still/<id>.webp frame-0 idle, 128px
index.js / index.d.ts  typed re-export of the manifest
THIRD-PARTY-NOTICES    Microsoft copyright + MIT licence text

entries is keyed on design-system FlyEmojiEntry.id — the frozen id contract. An id present in the catalog but absent from entries is a coverage gap: the design system renders the native glyph and logs one console.warn. It never throws.

index.js imports manifest.json with a JSON import attribute. Consumers on toolchains that do not support import attributes can import @flyos/design-system-emoji-pack/manifest.json directly — the same object, exposed through the exports map.

Publishing

The manifest.json and assets/** committed here are a placeholder skeleton. Real assets and the real manifest are produced by the tools/emoji-vendor/ pipeline (WP0), which also emits THIRD-PARTY-NOTICES.

THIRD-PARTY-NOTICES is required at publish time. The MIT licence obliges us to preserve Microsoft's copyright and licence text alongside the redistributed artwork. Do not publish a version of this package without it.