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

heavylift

v0.1.8

Published

A lightweight CSS design system merging MD3, LiftKit, and Tailwind-like utility.

Readme

HeavyLift Styles and Color Tools

Project Overview

HeavyLift is a CSS design system and tooling suite that merges Material Design 3 (MD3) robustness with Liftkit's relativistic sizing and a Tailwind-like developer experience.

Core Pillars:

  • Dynamic MD3 Color System: A TypeScript-based generator using the official @material/material-color-utilities to create accessible, perceptual color schemes from any seed color.
  • Golden Ratio Sizing: A sizing system based on φ (≈1.618) using em units for natural harmony and effortless scalability.
  • Seamless Merge Components: Standardized CSS components that utilize MD3 semantic tokens and Liftkit sizing, offering utility-friendly classes for rapid development.

Documentation

Building and Running

Key Commands

  • Generate Color Scheme: Creates a new color scheme (JSON and CSS) in generated-colors/.
    npm run generate-colors "#HEX_CODE"
  • Scaffold Component: Creates a new CSS component file and registers it in entry.css.
    npm run scaffold "component-name"
  • Build CSS: Bundles and minifies global.css and copies assets to dist/.
    npm run build
  • Release: Runs all checks, tests, builds the project, and publishes to npm.
    npm run release
  • Test: Runs unit tests for the color generator with 100% coverage enforcement.
    npm run test
  • Check: Runs Biome linting, formatting, and TypeScript type checking.
    npm run check

Contributing

Adding a Component

To ensure consistency, always use the scaffolding tool when adding new UI components:

npm run scaffold "my-new-component"

This will:

  1. Create styles/lib-hl/components/my-new-component.css with a standard boilerplate.
  2. Register the component in the CSS layer system.

Standards

  • All new components MUST use MD3 semantic tokens (var(--hl-...)).
  • Layout MUST rely on Golden Ratio spacing variables (var(--lg), var(--md), etc.).
  • Utilities should use dash-based naming (m-md) for consistency.
  • Run npm run check before submitting changes to ensure linting and type safety.

Key Files and Directories

  • scripts/: Color generation logic and CLI.
  • styles/lib-hl/: Core design system source.
    • theme/: Variables and color mappings.
    • base/: Reset and typography.
    • components/: MD3-compliant UI components.
    • utilities/: Helper classes.
  • docs/: Philosophical and implementation details.
  • dist/: Distribution files (CSS, Fonts, JS).

Acknowledgments

Special thanks to the teams and contributors whose work forms the foundation of HeavyLift:

  • The LiftKit team for their relativistic sizing philosophy.
  • The Material Design contributors for the MD3 specifications and color utilities.
  • The Tailwind CSS team for the utility-first developer experience inspiration.