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

@ralorotech/filament-ds

v1.2.0

Published

Filament Design System for React — precision, clarity, craftsmanship. Tree-shakeable component library with dark mode support.

Readme

Filament Design System · React

A design system for precision, clarity, and craftsmanship. Built for Ralorotech.

v1.2 · React 18+ · Tree-shakeable · Dark mode native · TypeScript

Install

npm install @filament/react

Quick start

// 1. Import the styles once at your app root
import "@filament/react/styles.css";

// 2. Wrap your app with the ThemeProvider
import { ThemeProvider } from "@filament/react";

export default function App() {
  return (
    <ThemeProvider defaultTheme="light">
      <YourApp />
    </ThemeProvider>
  );
}

// 3. Use any component
import { Button, Badge, Card } from "@filament/react";

<Button variant="cta">Cotizar</Button>
<Badge variant="emerald">Active</Badge>

Tree-shaking

Every component is exposed under its own subpath so unused code never enters your bundle:

// Optimal — bundles only Button + its CSS
import { Button } from "@filament/react/Button";
import "@filament/react/styles/Button.css";
import "@filament/react/styles/tokens.css";

Or use the barrel — modern bundlers (Vite, webpack 5, Rollup, esbuild) will tree-shake correctly because sideEffects is restricted to CSS files only.

import { Button } from "@filament/react"; // tree-shaken

What's inside

Foundation

  • Tokens — primitive colors (bone, graphite, emerald, flame, signal) + semantic tokens (--bg, --text, --accent, …) that adapt to light/dark.
  • Typography — Geist (UI/body) + JetBrains Mono (technical/metadata).
  • Spacing — 8px base scale.
  • Shadows & radius — theme-aware.

Primitives

Button, Badge, Card, Field (Label/Input/Hint/Error/Textarea), Select, SegmentedControl.

Composite

Modal (standard / accent / confirm), Carousel, 12 background Patterns (Grid, Dots, Inverse, Hatch, Cross, Lines, PCB, Noise, FadeDot, Wave, Iso, Hex).

Typography components

Display, H1-H4, Body, BodyLg, BodySm, Lead, Eyebrow, Mono, Micro, Caption, Blockquote, CodeBlock, InlineCode, Strong, Link, Em, UnorderedList, OrderedList.

Data

KPICard, BarChart, PerfTable.

E-commerce

ProductCard, PricingTable, CartSummary.

3D Printing domain

PrintMonitor, MaterialSelector, TempGauge, LayerConfigurator.

Gallery

GalleryGrid, GalleryItem, GalleryFilters.

Heroes

5 base patterns (HeroTypewriter, HeroSplit, HeroStats, HeroMarquee, HeroOrbital) plus 20 vertical variants (ENG-01PCB-05).

Marketing

YouTubeThumbnail, OpenGraphImage, BlogThumbnail, InstagramSquare, StoryTemplate.

Theme

import { useTheme } from "@filament/react";

function ThemeToggle() {
  const { theme, toggle } = useTheme();
  return (
    <button onClick={toggle}>
      {theme === "dark" ? "☀️" : "🌙"}
    </button>
  );
}

ThemeProvider writes data-theme on <html> and persists in localStorage["filament-theme"]. Defaults to system preference.

Reference

The full visual spec lives in design.md and design-system.html. The TypeScript source under src/ is the implementation source of truth.

License

MIT