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

eden-components

v0.0.2

Published

Eden UI — Minimalist component library for React 18 + Tailwind CSS

Readme

eden-components

Minimalist React 18 component library built with Tailwind CSS, class-variance-authority (CVA), and Lucide icons. Designed for the Eden ecosystem.

Installation

npm install eden-components react react-dom tailwindcss lucide-react

Setup

1. Import global styles

// main.tsx or App.tsx
import 'eden-components/styles.css'

2. Configure Tailwind

// tailwind.config.js
export default {
  content: [
    './index.html',
    './src/**/*.{ts,tsx}',
    './node_modules/eden-components/dist/**/*.{js,cjs}',
  ],
  theme: {
    extend: {
      fontFamily: {
        sans: ['Rubik', 'system-ui', 'sans-serif'],
      },
    },
  },
}

Components

Button

import { Button } from 'eden-components'

<Button variant="primary" size="lg">Primary</Button>
<Button variant="outline">Outline</Button>
<Button variant="ghost">Ghost</Button>
<Button variant="danger">Delete</Button>
<Button disabled><Spinner size="sm" /> Loading</Button>

Variants: primary | outline | ghost | danger Sizes: sm | md | lg

Card

import { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from 'eden-components'

<Card>
  <CardHeader>
    <CardTitle>Project Title</CardTitle>
    <CardDescription>Brief description</CardDescription>
  </CardHeader>
  <CardContent>Content here</CardContent>
  <CardFooter>
    <Button>Action</Button>
  </CardFooter>
</Card>

Input & Textarea

import { Input, Textarea } from 'eden-components'

<Input label="Email" placeholder="[email protected]" error="Invalid email" />
<Textarea label="Notes" hint="Max 500 characters" />

Badge

import { Badge } from 'eden-components'

<Badge variant="success">Active</Badge>
<Badge variant="warning">Pending</Badge>
<Badge variant="danger">Error</Badge>

Dialog

import { Dialog } from 'eden-components'

<Dialog open={isOpen} onClose={() => setOpen(false)} title="Confirm" size="md">
  <p>Are you sure?</p>
</Dialog>

Select

import { Select } from 'eden-components'

<Select
  label="Role"
  options={[
    { value: 'admin', label: 'Admin' },
    { value: 'user', label: 'User' },
  ]}
/>

Table

import { Table, TableHeader, TableBody, TableRow, TableHead, TableCell } from 'eden-components'

<Table>
  <TableHeader>
    <TableRow>
      <TableHead>Name</TableHead>
      <TableHead>Status</TableHead>
    </TableRow>
  </TableHeader>
  <TableBody>
    <TableRow>
      <TableCell>Alice</TableCell>
      <TableCell><Badge>Active</Badge></TableCell>
    </TableRow>
  </TableBody>
</Table>

Avatar

import { Avatar } from 'eden-components'

<Avatar src="/avatar.jpg" fallback="JD" size="md" />

Tabs

import { Tabs, TabsList, TabTrigger, TabContent } from 'eden-components'

<Tabs>
  <TabsList>
    <TabTrigger value="tab1">Overview</TabTrigger>
    <TabTrigger value="tab2">Settings</TabTrigger>
  </TabsList>
  <TabContent value="tab1">Overview content</TabContent>
  <TabContent value="tab2">Settings content</TabContent>
</Tabs>

Other Components

| Component | Description | |-----------|-------------| | Spinner | Loading indicator with size/variant | | Separator | Horizontal or vertical divider | | Checkbox | Checkbox with label support | | Accordion | Collapsible sections | | Skeleton | Loading placeholder shimmer |

License

MIT