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

@vedix/ui

v1.0.4

Published

A Vedix UI component library CLI

Downloads

371

Readme

Vedix UI

Vedix UI is a modern, developer-first UI component system for React applications.

It provides a powerful CLI that allows developers to quickly add production-ready components into their projects while maintaining full control over the source code.

Unlike traditional UI frameworks, Vedix UI copies the component source directly into your project so you can customize, extend, and maintain your UI without limitations.


🌐 Live Documentation

Explore all components with examples and usage guides.

👉 https://vedix-ui.vercel.app


✨ Preview

Button

Menubar

Prompt Input


🚀 Features

  • Developer-First CLI – Add components instantly using a simple command.
  • Copy-Paste Architecture – Components are added directly into your project.
  • Custom Theming – Built-in support for light and dark themes.
  • Tailwind CSS Powered – Clean and modern styling using Tailwind.
  • Accessible Components – Built on top of Radix UI primitives.
  • TypeScript Ready – Fully typed components for a better developer experience.
  • Modular System – Install only the components you need.

📦 Installation

Install the Vedix UI package in your project:

npm install @vedix/ui

Or run the CLI directly using npx:

npx @vedix/ui init

⚡ Quick Start

1. Initialize Vedix UI

Run the initialization command in your project root:

npx @vedix/ui init

This command will:

  • Create a vedix.config.json configuration file
  • Set up global styles and theme variables
  • Create utility helpers
  • Install required dependencies

You will also be asked where to store your UI components.

Default path:

src/components/ui

2. Add Components

Use the CLI to add components from the Vedix UI registry.

Example:

npx @vedix/ui add button
npx @vedix/ui add dialog
npx @vedix/ui add form

The CLI will automatically:

  1. Copy the component source code into your project
  2. Install required dependencies
  3. Configure imports if necessary

🧩 Example Usage

After adding a component, you can use it like this:

import { Button } from "@/components/ui/button"

export default function Page() {
  return (
    <div>
      <Button>Click me</Button>
    </div>
  )
}

📚 Available Components

Vedix UI includes a rich collection of modern UI components.

General

  • Button
  • Badge
  • Label
  • Separator

Forms

  • Input
  • Textarea
  • Checkbox
  • Select
  • Switch
  • Radio Group
  • Form

Layout

  • Card
  • Tabs
  • Accordion
  • Scroll Area
  • Table

Feedback

  • Alert
  • Progress
  • Skeleton
  • Tooltip

Overlay

  • Dialog
  • Popover
  • Alert Dialog
  • Hover Card
  • Sheet
  • Context Menu
  • Dropdown Menu

Advanced

  • Command
  • Calendar
  • Navigation Menu
  • Sidebar

🛠 Technology Stack

Vedix UI is built using modern frontend technologies:

  • React
  • Tailwind CSS
  • Radix UI
  • React Hook Form
  • Framer Motion
  • Lucide Icons

🎯 Use Cases

Build Your Own Design System

Vedix UI is ideal for teams building custom design systems. Since components are copied into your project, you have full control over them.

Rapid Prototyping

Quickly build modern interfaces without spending time implementing complex UI components.

Production Applications

All components are production-ready and designed with accessibility and performance in mind.


💡 Project Philosophy

Vedix UI follows a simple principle:

Developers should own their UI components.

Instead of locking you into a framework, Vedix UI gives you full control of the code.


🗺 Roadmap

Upcoming improvements for Vedix UI:

  • Component playground
  • Theme generator
  • Figma design kit
  • Additional components
  • Improved CLI tooling

📄 License

MIT License