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

llmighty-ui-lib

v1.0.6

Published

LLmighty-UI React Component Library

Readme

⚡ LLMighty UI

The last React component library you'll ever need.

Production-ready components + AI generation in one package.
Describe any UI in plain English → get a ready-to-use React component instantly.

GitHub · Report a Bug · Request a Feature


🚀 Quick Start

npm install llmighty-ui-lib
import { Button, Card, ProfileCard } from "llmighty-ui-lib";

function App() {
  return (
    <>
      <Button variant="primary" size="md" icon="🚀">
        Get Started
      </Button>

      <Card
        title="Quantum Renderer"
        tag="Stable"
        accentColor="#6ee7b7"
        description="GPU-accelerated rendering at 120fps."
      />

      <ProfileCard
        name="Farhan Ansari"
        role="Fullstack Developer"
        company="LLMighty"
        accentColor="#818cf8"
      />
    </>
  );
}

✨ Why LLMighty UI?

| | LLMighty UI | Other Libraries | |---|---|---| | Pre-built components | ✅ | ✅ | | AI component generation | ✅ | ❌ | | Prop-based theming (no CSS overrides) | ✅ | ⚠️ | | ESM + CJS dual output | ✅ | ⚠️ | | SaaS-ready with subscriptions | ✅ | ❌ |


🧩 Components

<Button />

A fully featured button with variants, icons, loading states, and custom theming.

<Button
  variant="primary"     // primary | secondary | outline | ghost | danger
  size="md"             // sm | md | lg
  icon="🚀"
  iconPosition="left"   // left | right
  rounded={false}
  fullWidth={false}
  loading={false}
  disabled={false}
  accentColor="#6ee7b7"
  onClick={() => {}}
>
  Deploy
</Button>

<Card />

A versatile content card with collapsible support, custom accents, and footer slots.

<Card
  title="Card Title"
  subtitle="Supporting line"
  description="Body content goes here."
  tag="New"
  size="md"             // sm | md | lg
  accentColor="#6ee7b7"
  collapsible={true}
  footer={<span>Footer content</span>}
/>

<ProfileCard />

A developer-focused profile card with stats, badges, and action buttons.

<ProfileCard
  name="Farhan Ansari"
  role="Fullstack Developer"
  company="LLMighty"
  bio="Building cool things with React and AI."
  initials="FA"
  accentColor="#818cf8"
  stats={[
    { label: "Projects", value: "42" },
    { label: "Followers", value: "1.2k" },
  ]}
  badges={["React", "Node.js", "AI"]}
  onFollow={() => {}}
  onMessage={() => {}}
/>

🤖 AI Component Generation

Available on paid plans via the LLMighty UI Platform

Describe any UI in natural language and receive a complete, copy-paste-ready React component — rendered live in the playground and exportable to your project.

Example:

"Create a responsive pricing card with 3 tiers, a dark theme,
and a highlighted recommended plan."

Output: A fully functional React component, live-rendered and ready to drop into your codebase.

Powered by OpenRouter for multi-model AI routing.


🎨 Theming

Every component is customizable via props — no CSS overrides, no !important hacks.

// Swap accent color per component instance
<Button accentColor="#f59e0b" variant="primary">Custom Theme</Button>
<Card accentColor="#ec4899" title="Pink Card" />

Dark mode, light mode, and custom theme token support coming soon on the roadmap.


📦 Package Info

| Property | Value | |---|---| | Bundle formats | ESM + CJS (via tsup) | | Framework | React | | Peer dependency | react >= 17 | | License | MIT |


🗺️ Roadmap

  • [ ] CLI tool for scaffolding (à la shadcn/ui)
  • [ ] Visual customization dashboard
  • [ ] Dark / light / custom theme tokens
  • [ ] Figma plugin for design-to-code export
  • [ ] Extended library — Table, Modal, Toast, Drawer, and more
  • [ ] Component versioning and changelogs

🤝 Contributing

Contributions are welcome! To get started:

# 1. Fork the repo and clone it
git clone https://github.com/FarhanAnsari124/LLMighty-UI.git

# 2. Create a feature branch
git checkout -b feat/your-feature

# 3. Commit and push
git commit -m "feat: add your feature"
git push origin feat/your-feature

# 4. Open a Pull Request

Please read CONTRIBUTING.md before submitting.


📄 License

Distributed under the MIT License. See LICENSE for details.


Built with ☕ by Farhan Ansari

If this project helped you, please give it a ⭐ on GitHub — it keeps the project alive!