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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@taigakilla/arcane-ui

v0.2.1

Published

Arcane-themed React component library with mystical UI elements

Readme

@taigakilla/arcane-ui

A mystical, arcane-themed React component library built with TypeScript and Tailwind CSS.

Installation

npm install @taigakilla/arcane-ui

Peer Dependencies

Make sure you have these installed in your project:

npm install react react-dom lucide-react

Usage

Import Styles

Add the CSS import to your app's entry point:

import "@taigakilla/arcane-ui/dist/styles.css";

Components

Button

import { Button } from "@taigakilla/arcane-ui";

function App() {
  return (
    <>
      <Button variant="primary">Primary Action</Button>
      <Button variant="secondary">Secondary Action</Button>
      <Button variant="ghost">Ghost Action</Button>
      <Button glow>Mystical Glow Effect</Button>
    </>
  );
}

Props:

  • variant: 'primary' | 'secondary' | 'ghost' (default: 'primary')
  • size: 'sm' | 'md' | 'lg' (default: 'md')
  • glow: boolean - Adds arcane glow effect

Card

import { Card } from "@taigakilla/arcane-ui";

function App() {
  return (
    <Card variant="elevated" glow>
      <h2>Arcane Card</h2>
      <p>Dark themed card with mystical borders.</p>
    </Card>
  );
}

Props:

  • variant: 'default' | 'elevated' | 'bordered' (default: 'default')
  • glow: boolean - Adds golden glow effect

Input

import { Input } from "@taigakilla/arcane-ui";

function App() {
  return (
    <Input
      label="Email"
      type="email"
      placeholder="Enter your email"
      error="Invalid email format"
    />
  );
}

Props:

  • label: string - Floating label text
  • error: string - Error message to display
  • glow: boolean - Adds golden glow effect

Badge

import { Badge } from "@taigakilla/arcane-ui";

function App() {
  return (
    <>
      <Badge variant="success">Active</Badge>
      <Badge variant="error">Expired</Badge>
      <Badge variant="warning">Expiring Soon</Badge>
      <Badge variant="info">3 uses left</Badge>
    </>
  );
}

Props:

  • variant: 'default' | 'success' | 'warning' | 'error' | 'info' (default: 'default')
  • size: 'sm' | 'md' | 'lg' (default: 'md')

Toast

import { Toast } from "@taigakilla/arcane-ui";

function App() {
  return (
    <Toast
      variant="success"
      title="Coupon Applied!"
      description="You saved $10 on your order"
    />
  );
}

Props:

  • variant: 'success' | 'error' | 'warning' | 'info' (default: 'info')
  • title: string - Toast title
  • description: string - Toast description

Theme

Arcane UI uses a dark mystical theme with the following color palette:

  • Dark Background: Deep slate blues (#0F172A, #020617)
  • Gold Accents: Tarot card inspired gold (#F59E0B)
  • Blue Magic: Mystical blue tones (#1E40AF, #3B82F6)
  • Purple Accents: Arcane purple (#8B5CF6)

Components feature:

  • Glow effects with golden/blue shadows
  • Smooth transitions and hover states
  • Accessible focus states
  • Responsive sizing

Utilities

cn (className merger)

Utility function for merging Tailwind classes:

import { cn } from "@taigakilla/arcane-ui";

const MyComponent = ({ className }) => (
  <div className={cn("base-class", className)}>Content</div>
);

Development

This library uses:

  • Biome for linting and formatting
  • Husky for git hooks
  • Conventional Commits for commit messages
  • tsup for building

License

MIT