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

@arcanalabs/ui-components

v2.6.1

Published

Arcana Labs UI Components — a typed, framework-native shadcn-style component library for Vue 3, React, Angular and Svelte.

Readme


Install

npm install @arcanalabs/ui-components

No runtime dependencies — installing the package adds nothing to your bundle.

Set up

Import the stylesheet once, at the entrypoint of your application:

import "@arcanalabs/ui-components/styles.css";

Then import components from the subpath of your framework:

| Framework | Subpath | |---|---| | Vue 3 | @arcanalabs/ui-components/vue | | React | @arcanalabs/ui-components/react | | Angular | @arcanalabs/ui-components/angular | | Svelte 5 | @arcanalabs/ui-components/svelte |

Every component ships in all four with the same markup, classes and behavior.

Optional peers

Each of these is an optional peer dependency: install it only if it applies to you. Nothing fails at install time when one is missing — the component that needs it is the one that requires it.

Your framework — install only the one you use (vue, react + react-dom, @angular/core + @angular/common, or svelte).

Icons — components with an icon prop use the Font Awesome Free classes (fa-solid fa-*):

npm install @fortawesome/fontawesome-free
import "@fortawesome/fontawesome-free/css/all.min.css";

Input maskingArcanaInputMask masks through maska, in all four frameworks:

npm install maska

In Vue only, register the directive once when you create the app:

app.use(Maska);

Usage

The full catalog — components, props, events, live demos and per-framework code — lives in the documentation, available in 8 languages.

MIT © Arcana Labs