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

glintkit

v0.1.1

Published

Add beautiful 3D, glass, and motion UI components to your project

Readme

glintkit

Add beautiful 3D, glass, and motion UI components to your project.

Like shadcn/ui, but for WebGL effects, glassmorphism, and motion. Copy-paste components you own — no runtime dependency, no lock-in.

npm version License: MIT CI Node.js


Why glintkit?

Most UI libraries give you basic buttons and inputs. glintkit gives you the components that make users say "wow":

  • Holographic cards with rainbow shine that follows your cursor
  • WebGL prismatic bursts with real-time light refraction
  • Glass surfaces with SVG-based distortion effects
  • 3D tilt cards with depth layers and touch support
  • Cyberpunk counters with matrix-style scramble animations

All as copy-paste React components powered by Tailwind CSS.

Quick Start

npx glintkit init
npx glintkit add 3d-card

That's it. The component is now in your project — you own it completely.

How It Works

npx glintkit init          # 1. Creates glintkit.json config
npx glintkit add holo-card # 2. Copies component + installs deps + injects CSS
                           # 3. Import and use — it's your code now

glintkit detects your project setup automatically:

  • Package manager — npm, pnpm, yarn, or bun
  • Path aliases — reads from your tsconfig.json
  • CSS file — injects presets with idempotent markers

Components

3D — glintkit add --category 3d

| Component | Description | Dependencies | |-----------|-------------|--------------| | 3d-card | 3D tilt card with mouse/touch tracking and depth layers | — | | prismatic-burst | WebGL prismatic light effect with customizable colors | ogl | | glass-surface | SVG-based glass refraction and distortion surface | — | | dome-gallery | 3D dome/sphere photo gallery with drag and inertia | @use-gesture/react | | holo-card | Holographic card with rainbow shine and flip animation | — | | flip-card | 3D flip card with tilt effect and customizable content | — |

Glass — glintkit add --category glass

| Component | Description | Dependencies | |-----------|-------------|--------------| | button | Multi-variant button with glow border, gradient, glass styles | clsx, tailwind-merge | | card | Glass card with default, strong, gradient, outline variants | clsx, tailwind-merge | | modal | Modal dialog with glass backdrop and portal rendering | — | | music-player | Audio player with soundwave visualization | — |

Motion — glintkit add --category motion

| Component | Description | Dependencies | |-----------|-------------|--------------| | counter | Cyberpunk scramble counter with matrix-style animation | — | | countdown-timer | Countdown timer with multiple visual states | — | | shiny-text | Animated shiny/glossy text with sweep direction | motion | | light-rays | WebGL volumetric light rays from configurable origin | ogl |

Hooks — glintkit add --category hooks

| Hook | Description | |------|-------------| | use-countdown | Countdown timer (days, hours, minutes, seconds) | | use-scroll-animation | IntersectionObserver-based scroll trigger | | use-media-query | Responsive breakpoint detection with helpers |

Utils — glintkit add --category utils

| Utility | Description | |---------|-------------| | cn | Tailwind CSS class merge (clsx + tailwind-merge) |

CLI Reference

# Initialize configuration
glintkit init              # Interactive setup
glintkit init -y           # Accept defaults

# Add components
glintkit add 3d-card       # Single component
glintkit add 3d-card modal # Multiple components
glintkit add -c 3d         # Entire category
glintkit add -c 3d,glass   # Multiple categories
glintkit add --all         # Everything
glintkit add --overwrite   # Replace existing files

# Browse components
glintkit list              # All components
glintkit list -c motion    # Filter by category

Configuration

glintkit init creates glintkit.json:

{
  "aliases": {
    "components": "@/components/ui",
    "hooks": "@/hooks",
    "utils": "@/lib"
  },
  "tailwind": {
    "css": "src/app/globals.css"
  }
}

Alias Resolution

glintkit reads your tsconfig.json to auto-detect path aliases:

| tsconfig paths | Detected prefix | |---------------|-----------------| | "@/*": ["./src/*"] | @ | | "~/*": ["./src/*"] | ~ | | (none) | @ (default) |

Architecture

┌──────────────┐     ┌──────────────┐     ┌──────────────┐
│  CLI Layer   │────▶│   Registry   │────▶│  Templates   │
│  (commander) │     │  (metadata)  │     │  (bundled)   │
└──────┬───────┘     └──────────────┘     └──────┬───────┘
       │                                         │
       ▼                                         ▼
┌──────────────┐     ┌──────────────┐     ┌──────────────┐
│ Config Mgmt  │     │  CSS Inject  │     │ File Writer  │
│ (glint.json) │     │  (markers)   │     │ (aliases)    │
└──────────────┘     └──────────────┘     └──────────────┘

Requirements

  • Node.js >= 18
  • React >= 18
  • Tailwind CSS v3 or v4
  • TypeScript (recommended)

Comparison

| Feature | glintkit | Traditional UI Libraries | |---------|----------|------------------------| | Distribution | CLI copy-paste | npm import | | Ownership | You own the code | Library dependency | | Customization | Edit directly | Theme/props only | | Bundle size | Only what you use | Entire library | | Styling | Tailwind CSS | Library-specific | | Lock-in | None | Version coupling |

Contributing

See CONTRIBUTING.md for development setup and guidelines.

License

MIT — use it however you want.