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

achery-ui

v0.11.1

Published

Achery Workshop design system — autumn alchemy, hard edges, botanical marginalia.

Readme

achery-ui

Achery Workshop design system — autumn alchemy, hard edges, botanical marginalia.

A React component library with a strong visual identity: square corners, stamp shadows, compressed type, and decorative glyphs drawn from alchemical and botanical illustration traditions.


Install

pnpm add achery-ui

Peer dependencies (install separately if not already present):

pnpm add react react-dom

Requires React 19+.


Quick start

// 1. Import styles once at your app entry point
import 'achery-ui/style.css'

// 2. Wrap your app in AcheryProvider
import { AcheryProvider } from 'achery-ui'

export default function App() {
  return (
    <AcheryProvider defaultTheme="light" defaultAccent="terracotta">
      <YourApp />
    </AcheryProvider>
  )
}

// 3. Use components anywhere in the tree
import { Button, Badge, Card, Heading } from 'achery-ui'

function RecipeCard({ recipe }) {
  return (
    <Card variant="stamp" marginalia="fern">
      <Heading level={2}>{recipe.name}</Heading>
      <Badge tone="saved">Published</Badge>
      <Button variant="accent" glyph="book">Open</Button>
    </Card>
  )
}

Entry points

| Import | Contents | React Native safe? | |---|---|---| | achery-ui | All components + theme | No (DOM + CSS) | | achery-ui/style.css | Component styles | No | | achery-ui/tokens | Design tokens as TypeScript values | Yes | | achery-ui/native | React Native components + NativeThemeProvider | Yes |

The /tokens entry is zero-DOM, zero-React — safe to import from React Native or any non-browser context. The /native entry ships a full component set built on React Native primitives with no CSS dependency.


Components

| Component | Description | |---|---| | AcheryProvider | Theme root — wraps your app | | useTheme | Hook: read/set theme and accent | | Button | Five variants, three sizes, glyphs, kbd hints | | Badge | Status/category label with five tones | | Eyebrow | Uppercase section label with optional count | | Toggle | Binary on/off switch | | Glyph | 33-icon SVG glyph set | | Marginalia | Decorative corner glyph (aria-hidden) | | Typography | Display, Heading, Body, Mono | | Field | Form field wrapper: label + hint/error | | Input | Single-line text input | | Textarea | Multi-line text input | | Select | Native select dropdown | | SearchInput | Search input with compass icon | | Card | Surface container: flat or stamp variant | | Tabs | Accessible tab navigation | | Tooltip | Hover/focus contextual label | | Sidebar | Vertical nav with groups and active state | | AppBar | Top bar: brand, search, accent picker, theme toggle | | Table | Sortable data table, row selection, hybrid state | | Modal | Accessible dialog with focus trap | | ToastProvider + useToast | Imperative toast notifications |

Full props reference: COMPONENTS.md · Detailed docs: src/components/README.md


Theming

import { useTheme } from 'achery-ui'

const { theme, toggleTheme, accent, setAccent } = useTheme()

Themes: light · dark · system
Accents: terracotta · moss · plum · ochre · rust · copper · slate · verdigris · mauve · amber · fern · blush
Dial: underline · chrome · surface — controls how loudly the accent runs
Surface origin: web-first · native-first · parity · native-only — declares the adaptation ladder

Full theming guide: src/theme/README.md


Design language

See docs/styleguide.md for the full visual language reference — palette rationale, typography roles, spacing scale, glyphs, motion, and copy voice.

For cross-surface adaptation (web ↔ mobile ↔ native) — the disclosure ladder, promotion ladder, and Achery-on-touch rules — see src/native/README.md.


Versioning

Versions follow Semantic Versioning. Changes are documented in CHANGELOG.md.

On merge to main, a GitHub Action automatically creates a GitHub Release and publishes to npm if the version in package.json has changed since the last tag.


Development

pnpm install
pnpm storybook          # component explorer at localhost:6006
pnpm build              # build library → dist/
pnpm build:watch        # rebuild on file changes
pnpm typecheck          # tsc --noEmit
pnpm build-storybook    # static storybook → storybook-static/

Working on a branch

See CLAUDE.md for the full contribution workflow, including versioning and changelog rules.


Package structure

src/
  tokens/       # /tokens entry point — React Native safe
  types/        # Shared TypeScript types
  theme/        # ThemeProvider, useTheme, CSS contracts
  glyphs/       # Glyph component + 33 inlined SVG components
  components/   # All UI components (stories colocated)
  docs/         # Storybook MDX documentation pages
dist/           # Built output (gitignored)
.github/
  workflows/
    release.yml # Auto-release on version bump to main