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

fis-horizon-ui

v1.0.0

Published

React component library for FIS HORIZON — Figma Make Kit companion package

Readme

fis-horizon-ui

React component library for FIS HORIZON — the Figma Make Kit companion package.

All design tokens are mapped directly from FIS-Component-Library in Figma.
Fonts used: Barlow (headings/display) · Source Sans Pro (body/labels)


Components

| Component | Description | |---|---| | CustomerHeader | Sticky customer identity card at the top of the Customer 360 view | | AccountSummaryCard | Individual account card (checking, savings, loan, CD) | | DataTable | Transactions table with status badges | | AlertBanner | Contextual alerts (fraud, notices, compliance) | | QuickActions | Button group for common banker tasks |


Setup & Publishing (Step-by-Step)

Step 1 — Install Node.js

If you don't have it, download from https://nodejs.org (choose the LTS version).

Check it worked by opening your terminal and typing:

node -v

Step 2 — Install dependencies

In the terminal, navigate to this folder and run:

cd fis-horizon-ui
npm install

Step 3 — Build the package

This compiles the React components so they can be used by others:

npm run build

You should see a dist/ folder appear.

Step 4 — Create an npm account

Go to https://www.npmjs.com and sign up for a free account if you don't have one.

Then log in from your terminal:

npm login

It'll ask for your username, password, and email.

Step 5 — Publish

npm publish

Done. Your package is now live at https://www.npmjs.com/package/fis-horizon-ui


Using in Figma Make

When writing your Figma Make prompt, reference the package like this:

Use the fis-horizon-ui npm package for all components.
Import CustomerHeader, AccountSummaryCard, DataTable, AlertBanner, 
and QuickActions from 'fis-horizon-ui'.

Fonts

Add these to your HTML <head> or your app's CSS to load the correct typefaces:

<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;900&family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet">

Token Reference

import { colors, spacing, radius, typography, shadow } from 'fis-horizon-ui';

// Example usage
colors.bg.brand         // #015B7E  — primary brand background
colors.text.primary     // #011C27  — main body text
colors.border.default   // #E8DBCB  — default card borders
spacing[4]              // '16px'
radius.lg               // '12px'
typography.family.display // 'Barlow, sans-serif'