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

poeticui

v0.1.0

Published

Poetic UI — a neutral, agent-friendly React design system. One install for tokens + components. Apache-2.0.

Downloads

128

Readme

poeticui

One install. Tokens + components in a single package. The convenience layer over @artificialpoets/tokens and @artificialpoets/components.

bun  add poeticui
pnpm add poeticui
npm  install poeticui
yarn add poeticui

You also need React 19 + the standard styling peers (most projects have these already):

bun add react@^19 react-dom@^19 @headlessui/react@^2 clsx@^2 tailwind-merge@^3

For technical-content primitives (<CodeBlock>, <BlockMath>, <PackageManagerTabs>), install the separate content package — it has heavy peers (Shiki, KaTeX):

bun add @artificialpoets/content

Quick start

import { Button, Card, Heading, Text, Badge } from "poeticui";

export default function Welcome() {
  return (
    <Card>
      <Badge color="green">v0.1.0</Badge>
      <Heading as="h2">Welcome to Poetic UI</Heading>
      <Text>Built with poeticui.</Text>
      <Button color="dark/zinc">Get started</Button>
    </Card>
  );
}

Wire the CSS once in your app entry:

@import "tailwindcss";
@custom-variant dark (&:where(.dark, .dark *));
@import "poeticui/styles/tokens";

That's the full install. The library paints with a neutral theme by default; override the 6-slot theme contract in your own CSS to rebrand.

Two import styles

Pick whichever feels right — both are supported and tree-shake equally well:

// Barrel — simplest
import { Button, Card, Heading, Input, Switch } from "poeticui";

// Subpath — explicit category, slightly easier to grep for in big codebases
import { Button } from "poeticui/core";
import { Card, Heading } from "poeticui/data-display";
import { Input, Switch } from "poeticui/forms";

Subpaths

| Subpath | What it re-exports | |---|---| | poeticui | Everything from @artificialpoets/components | | poeticui/core | Button, Link, TouchTarget | | poeticui/data-display | Avatar, Badge, BadgeButton, Card, Code, DescriptionList family, Divider, Heading, Skeleton, Stat, Strong, Subheading, Table family, Text, TextLink | | poeticui/forms | Checkbox, Combobox, Fieldset family, Input, Select, Switch family, Textarea, Date-range-picker | | poeticui/feedback | Alert, Callout, Dialog family, EmptyState, Hint | | poeticui/layout | DrawerShell, PageHeader, SidebarLayout, StackedLayout | | poeticui/navigation | Breadcrumbs, Navbar family, Pagination, SegmentedTabs, Sidebar family, Tabs | | poeticui/tables | DataTable family, FilteredTable, TablePaginationFooter, useDataTableState | | poeticui/misc | Dropdown family, Popover | | poeticui/icons | ServiceIcon | | poeticui/lib | cx() helper | | poeticui/styles/tokens | CSS — OKLCH palette + semantic variables + Tailwind theme mapping + neutral default theme |

What this is (and isn't)

This package is a thin wrapper — it adds zero source code, zero behavior, and depends on the underlying packages via ^0.1.0. Use it for ergonomics: one install command, one canonical import path. The underlying packages continue to work and remain installable standalone:

# Granular install style — also supported, identical components
bun add @artificialpoets/components @artificialpoets/tokens

The two styles are interchangeable. Pick whichever fits your project.

License

Apache-2.0. See LICENSE at the repo root.