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

@coston/parallel-ui

v0.0.1

Published

Drop-in React and Vue shadcn components

Readme

@coston/parallel-ui

Drop-in React and Vue shadcn components with a shared variant system. Write your component variants once and use them across both frameworks.

Installation

npm install @coston/parallel-ui

Peer Dependencies

@coston/parallel-ui externalizes all runtime dependencies so you only install what your project actually uses. Install the ones relevant to your framework and the components you use:

| Package | Why required | |---|---| | class-variance-authority | Powers the variant system used by every component (button sizes, alert styles, etc.) | | clsx + tailwind-merge | Used by every component to merge class names safely | | react + react-dom | Required for all React components | | vue | Required for all Vue components | | radix-ui | Headless primitives behind most React components (dialogs, dropdowns, etc.) | | react-hook-form | Required by the Form component | | cmdk | Required by the Command component | | input-otp | Required by the InputOTP component | | recharts | Required by the Chart component | | embla-carousel-react | Required by the React Carousel component | | embla-carousel-vue | Required by the Vue Carousel component | | vaul | Required by the React Drawer component | | vaul-vue | Required by the Vue Drawer component | | vee-validate | Required by the Vue Form component |

React minimal install:

npm install @coston/parallel-ui class-variance-authority clsx tailwind-merge react react-dom radix-ui

Vue minimal install:

npm install @coston/parallel-ui class-variance-authority clsx tailwind-merge vue

Usage

React

import { Button } from '@coston/parallel-ui/react'

export function App() {
  return <Button variant="default">Click me</Button>
}

Vue

<script setup>
import { Button } from '@coston/parallel-ui/vue'
</script>

<template>
  <Button variant="default">Click me</Button>
</template>

Individual components

// React - import only what you need
import { Button } from '@coston/parallel-ui/react/button'
import { Card, CardHeader, CardContent } from '@coston/parallel-ui/react/card'
// Vue - import only what you need
import { Button } from '@coston/parallel-ui/vue/button'
import { Card, CardHeader, CardContent } from '@coston/parallel-ui/vue/card'

Components

Accordion, Alert, Alert Dialog, Aspect Ratio, Avatar, Badge, Breadcrumb, Button, Calendar, Card, Carousel, Checkbox, Collapsible, Command, Context Menu, Dialog, Drawer, Dropdown Menu, Form, Hover Card, Input, Input OTP, Label, Menubar, Navigation Menu, Pagination, Popover, Progress, Radio Group, Resizable, Scroll Area, Select, Separator, Sheet, Sidebar, Skeleton, Slider, Switch, Table, Tabs, Textarea, Toast, Toggle, Toggle Group, Tooltip

Requirements

  • Node.js 18+
  • Tailwind CSS v3 or v4 in your project

License

MIT