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

@eintrek/erp-theme

v1.4.16

Published

A shadcn/ui component library with Storybook

Readme

ERP Theme - shadcn/ui Component Library

A beautiful and reusable component library built with shadcn/ui, TypeScript, TailwindCSS, and Storybook.

Features

  • 🎨 Beautiful components based on shadcn/ui
  • 📚 Storybook for component documentation and testing
  • 🔧 TypeScript support
  • 🎯 TailwindCSS for styling
  • 📦 Ready to be packaged and used in Next.js projects
  • 🌙 Dark mode support
  • ♿ Accessibility-first design

Getting Started

Installation

npm install

Development

Start Storybook development server:

npm run storybook

Build the library:

npm run build

Build Storybook for production:

npm run build-storybook

Usage in Next.js Project

  1. Install the package in your Next.js project:
npm install erp-theme
  1. Import TailwindCSS configuration in your tailwind.config.js:
import type { Config } from "tailwindcss";
import erpThemeConfig from "erp-theme/tailwind.config";

const config: Config = {
  ...erpThemeConfig,
  content: [
    // your existing content paths
    "./node_modules/erp-theme/dist/**/*.{js,ts,jsx,tsx}",
    ...erpThemeConfig.content,
  ],
};

export default config;
  1. Import the CSS variables in your global CSS:
@import "erp-theme/dist/globals.css";
  1. Use the components:
import { Button, Card, CardContent, CardHeader, CardTitle } from "erp-theme";

export default function MyPage() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Hello World</CardTitle>
      </CardHeader>
      <CardContent>
        <Button>Click me</Button>
      </CardContent>
    </Card>
  );
}

Components

  • Button - Versatile button component with multiple variants
  • Card - Card container with header, content, and footer sections

More components coming soon!

Development

Project Structure

src/
├── components/
│   └── ui/
│       ├── button.tsx
│       ├── button.stories.tsx
│       ├── card.tsx
│       └── card.stories.tsx
├── lib/
│   └── utils.ts
└── index.ts

Adding New Components

  1. Create the component in src/components/ui/
  2. Create corresponding stories in the same directory
  3. Export the component from src/index.ts
  4. Update this README

Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

License

MIT