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

@bagavathisingh/bugzx-motion-ui

v0.0.1

Published

A premium collection of beautifully designed, fully accessible UI components built with motion primitives.

Readme

BugzxMotion UI Components

A premium collection of beautifully designed, fully accessible UI components built with motion primitives.

✨ Features

  • 🎨 Premium Design - Modern, beautiful components inspired by the best design systems
  • Performance First - Optimized animations with zero runtime overhead
  • 🎭 Motion Primitives - Built-in animations for every component
  • 🌗 Theme Support - Light/Dark mode + Cyber/Neon variants
  • Accessible - Built on Radix UI primitives
  • 📦 Tree-shakeable - Import only what you need
  • 🔷 TypeScript - Fully typed with intelligent autocomplete
  • 🎯 Customizable - Every component accepts className and custom props

🚀 Components

Core Components

  • Button - Multiple variants (default, outline, ghost, neon) with motion effects
  • Card - Flexible card component with hover effects
  • Input - Form input with focus animations and neon mode
  • Switch - Animated toggle switch
  • Checkbox - Checkbox with scale animation
  • Tabs - Tabbed interface with content transitions
  • Accordion - Collapsible content panels
  • Dialog - Modal dialogs with backdrop blur
  • Dropdown Menu - Context menus and dropdowns

Premium Components

  • Spotlight - Mouse-tracking gradient spotlight effect
  • GradientBorderCard - Cards with animated gradient borders
  • ShimmerButton - Buttons with shimmer animation effect
  • AnimatedGridPattern - Animated background grid pattern
  • BentoGrid - Modern grid layout system
  • BentoCard - Feature cards for bento grids

📦 Installation

npm install @bugzx-motion/next
# or
pnpm add @bugzx-motion/next

🎯 Usage

Basic Example

import { Button, Card, CardHeader, CardTitle, CardContent } from '@bugzx-motion/next';

export default function MyComponent() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Welcome</CardTitle>
      </CardHeader>
      <CardContent>
        <Button motion="scale" variant="default">
          Click me
        </Button>
      </CardContent>
    </Card>
  );
}

Premium Components

import { 
  Spotlight, 
  GradientBorderCard, 
  ShimmerButton,
  BentoGrid,
  BentoCard 
} from '@bugzx-motion/next';

export default function PremiumDemo() {
  return (
    <div>
      {/* Spotlight Effect */}
      <Spotlight 
        className="p-8"
        spotlightColor="rgba(120,119,198,0.3)"
      >
        <h2>Hover over me!</h2>
        <p>Watch the spotlight follow your cursor</p>
      </Spotlight>

      {/* Gradient Border Card */}
      <GradientBorderCard
        gradientFrom="#667eea"
        gradientTo="#764ba2"
      >
        <h3>Beautiful Gradient Borders</h3>
      </GradientBorderCard>

      {/* Shimmer Button */}
      <ShimmerButton
        background="linear-gradient(135deg, #667eea 0%, #764ba2 100%)"
      >
        Get Started
      </ShimmerButton>

      {/* Bento Grid */}
      <BentoGrid>
        <BentoCard
          name="Feature 1"
          description="Amazing feature description"
          Icon={MyIcon}
          cta="Learn more"
        />
      </BentoGrid>
    </div>
  );
}

Cyber/Neon Mode

All components support a neon/cyber aesthetic:

import { Button, Input, Card, TabsList } from '@bugzx-motion/next';

export default function CyberMode() {
  return (
    <div className="bg-black">
      <Button variant="neon">Execute</Button>
      <Input neon placeholder="Enter command..." />
      <Card neon>Cyber content</Card>
      <TabsList neon>Cyber tabs</TabsList>
    </div>
  );
}

🎨 Customization

Every component is built with customization in mind:

<Button 
  variant="default"
  motion="scale"
  className="custom-class"
  whileHover={{ scale: 1.1 }}
>
  Custom Button
</Button>

🔧 Configuration

Add to your next.config.ts:

const nextConfig = {
  transpilePackages: [
    "@bugzx-motion/next",
    "@bugzx-motion/core",
    "@bugzx-motion/ui"
  ],
};

Add to your globals.css:

@import "tailwindcss";
@source "../../../packages/ui";

📚 Documentation

Visit our documentation for:

  • Component API reference
  • Interactive examples
  • Design guidelines
  • Migration guides

🤝 Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

📄 License

MIT © BugzxMotion

🌟 Inspiration

Built with inspiration from: