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

glt-ui

v0.3.0

Published

GLT UI — production React components with SCSS brand theme tokens (Atomic Design)

Readme

GLT UI

glt-ui is a production-oriented React component library with SCSS brand tokens, light/dark theming, and an Atomic Design layout. This repository is the publishable package at the root, plus a demo/ Next.js static component browser for live docs.

| Deliverable | Location | Where it ships | | --- | --- | --- | | glt-ui | repo root (src/, theme/) | npm | | Docs browser | demo/ | GitHub Pages | | Agent skill | skills/glt-ui-skill/ | Copy into your agent skills dir |

The library is the product. The demo app is a living catalog that proves the system works.

Live catalog: https://gaplo917.github.io/GLT-UI/
Release / publish steps: RELEASE.md


Repository layout

GLT-UI/
├── src/                          # glt-ui components (atoms → templates)
├── theme/                        # SCSS brand tokens
├── dist/                         # tsc output (gitignored; npm publish)
├── package.json                  # publishable glt-ui package
├── demo/                         # Next.js static docs browser
│   ├── app/
│   ├── components/docs/
│   └── package.json
├── skills/glt-ui-skill/          # agent skill
└── .github/workflows/            # Pages + npm publish

Quick start (consumer app)

npm install glt-ui react react-dom
npm install -D tailwindcss @tailwindcss/postcss sass
import { Button, Card, CardHeader, CardTitle } from 'glt-ui';
@use "glt-ui/theme/styles";
@use "tailwindcss";
@source "../node_modules/glt-ui/dist";

Toggle light/dark with data-theme="light" | "dark" on <html>.


Develop this monorepo

npm install
npm run dev            # builds glt-ui, then demo at http://localhost:3000
npm run build          # library only → dist/
npm run build:demo     # library + demo static export → demo/out
npm run build:pages    # same with BASE_PATH=/GLT-UI
npm run lint

Highlights

  • Token-driven UI — CSS variables for brand, surfaces, and semantic status colors
  • Atomic Design — atoms → molecules → organisms → templates
  • Tailwind utilities + brand theme — scan package output with @source
  • CodeBlock — Shiki + GapStyle VS theme (client-side, static-export friendly)
  • Charts & research widgets — themed Chart.js, benchmarks, sparklines, motion
  • Static docs — DocsBrowser with hash routing and theme toggle

Light / dark (defaults)

| Token | Light | Dark | | --- | --- | --- | | --brand-primary | #e65100 | #FFA726 | | --bg-color | #fff | #1d232c | | --text-color | #373737 | #dadada |

Status: --color-info / success / warning / danger (+ --color-on-status).

Dependencies (glt-ui)

| Package | Role | | --- | --- | | react / react-dom ≥ 18 | Peers | | chart.js | Chart organism | | shiki | CodeBlock | | clsx + tailwind-merge | cn() helper |

Demo app uses Next.js 16, Tailwind 4, Sass.

Agent skill

mkdir -p .grok/skills
ln -sfn ../../skills/glt-ui-skill .grok/skills/glt-ui

Notes

  • Next.js lives only under demo/ — see demo/ configs and AGENTS.md.
  • GitHub: gaplo917/GLT-UI

License

MIT © 2026 Gary Lo