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

@thenormvg/maya-ui

v1.0.4

Published

A premium, highly customizable Vue & Nuxt component library.

Readme


Why Maya UI?

Maya UI is not just another utility-based component library. It is designed to be highly opinionated on motion and structure but completely unopinionated on styling mechanisms.

  • State-of-the-art Motion — Fluid, spring-based interactions on buttons, switches, toggles, and modals.
  • Pure CSS Tokens — No Tailwind config overhead. The theme strictly relies on standard CSS variables (var(--maya-bg-surface)).
  • Nuxt Auto-Imports — Zero repetitive import statements. MayaBtn, MayaDialog, MayaToaster are automatically available.
  • Semantic Intent — Built-in success, warning, danger, and info intents across all interactive elements.
  • Cinematic Theme Toggling — Uses the native Document View Transition API for instant, buttery-smooth light/dark mode circular reveals.

Installation

Install the library using your preferred package manager:

pnpm add -D @thenormvg/maya-ui

Add the module to your nuxt.config.ts:

export default defineNuxtConfig({
  modules: ['@thenormvg/maya-ui'],
})

You're done! All components prefixing with Maya are now accessible in your .vue files.


Component Ecosystem

Maya UI includes over 40 distinct components grouped by functionality, all following the exact same aesthetic language.

Controls & Inputs

  • MayaBtn, MayaToggle, MayaToggleGroup, MayaSwitch
  • MayaInput, MayaTextarea, MayaNumberField, MayaInputOtp
  • MayaCheckbox, MayaRadio, MayaSelect, MayaCombobox
  • MayaDateChooser

Layouts & Containers

  • MayaCard, MayaPreviewCard, MayaCarousel, MayaBadge, MayaAvatar, MayaTable
  • MayaAccordion, MayaCollapsible
  • MayaField, MayaLabel, MayaFieldset
  • MayaScrollArea, MayaResizable, MayaSheet (Drawer)

Navigation & Menus

  • MayaBreadcrumb, MayaMenubar, MayaSidebar, MayaTopbar
  • MayaDropdownMenu, MayaContextMenu, MayaCommand

Feedback & Overlays

  • MayaAlert, MayaAlertDialog, MayaDialog, MayaBanner
  • MayaPopover, MayaHoverCard, MayaTooltip
  • MayaToast, MayaSonner (Stackable notifications wrapper)
  • MayaSpinner, MayaSkeleton, MayaPixelLoader, MayaDotOrbit

Code Documentation

  • MayaCodeBlock, MayaInlineCode, MayaPreviewCode, MayaProse

Built-in Agent Skill

Maya UI ships with a first-class AI Agent skill inside the skills/maya-ui directory.

If you use AI coding assistants (like Claude, Gemini, or custom agents), you can give them access to this folder. It provides a highly optimized, token-efficient reference of the entire 90+ component library, all design tokens, and best practices.

Instead of hallucinating props or importing components manually, your agent will write perfect Maya UI code out of the box.


Theming & Customization

Maya UI relies purely on native CSS custom properties. By default, it injects a highly tuned maya.css stylesheet, but overriding it is as simple as defining root variables in your project.

:root {
  /* Core Colors */
  --maya-bg-root: #09090b;
  --maya-text-primary: #ededed;

  /* Accent Theming */
  --maya-accent: #6366f1;
  --maya-accent-hover: #818cf8;
  --maya-accent-text: #ffffff;

  /* Form & Radius */
  --maya-radius-md: 8px;
  --maya-radius-full: 9999px;

  /* Typography */
  --maya-font-sans: "Inter", "Geist", sans-serif;
  --maya-font-mono: "Fira Code", monospace;
}

Local Development Playground

Maya UI features a beautifully crafted playground mapped to the actual documentation UI.

# Install dependencies
pnpm install

# Generate Nuxt definitions
pnpm run dev:prepare

# Start playground
pnpm run dev

Navigate to http://localhost:3000 to interact with all the components live in the browser.


License

MIT © 2026