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

create-shadcn-vue

v0.1.0

Published

Scaffold a new Vue project preconfigured with Tailwind and shadcn-vue.

Readme

------------------------------------------------------------

▄█████ ▄▄ ▄▄  ▄▄▄  ▄▄▄▄   ▄▄▄▄ ▄▄  ▄▄     ██  ██ ▄▄ ▄▄ ▄▄▄▄▄ 
▀▀▀▄▄▄ ██▄██ ██▀██ ██▀██ ██▀▀▀ ███▄██ ▄▄▄ ██▄▄██ ██ ██ ██▄▄  
█████▀ ██ ██ ██▀██ ████▀ ▀████ ██ ▀██      ▀██▀  ▀███▀ ██▄▄▄
                                                      
------------------------------------------------------------

create-shadcn-vue

Scaffold a new Vue project preconfigured with Tailwind CSS and shadcn-vue in one command.

It runs the manual shadcn-vue Vite install steps for you: create the Vue app, add Tailwind, patch tsconfig*.json and vite.config.ts with the @/* alias, then shadcn-vue init.

Usage

pnpm create shadcn-vue@latest [options] <project-name>

Works with any package manager (npm create, bun create, yarn create, …); it detects which one invoked it.

Options

| Option | Description | |------------------|--------------------------------------------------------------------| | --help, -h | Show help and exit. | | --default | Use all defaults for Vue, Tailwind, shadcn-vue and Vitest. | | --cwd <dir> | Directory to create the project in (default: current dir). | | --verbose | Print each command before running it. | | --bare | Skip the demo button component and App.vue. | | --vue-* | Forward a flag to create-vue (e.g. --vue-router--router). | | --vue-help | Show create-vue's options. | | --shadcn-* | Forward a flag to shadcn-vue init (e.g. --shadcn-base-color=zinc). | | --shadcn-help | Show shadcn-vue init's options. |

If the target directory already exists, it falls back to <project-name>-project.

Examples

# Everything default
pnpm create shadcn-vue@latest --default my-app

# TypeScript + router, zinc base color, into ./tmp/test
pnpm create shadcn-vue@latest --vue-ts --vue-router --shadcn-base-color=zinc --cwd ./tmp/test my-app

shadcn-vue's @/* alias needs TypeScript — pass --vue-ts (or --default) if you want it wired up.

Feature selection

This CLI runs its own yes/no wizard for the Vue features you didn't pass on the command line (TypeScript, Router, Pinia, Vitest, Playwright, ESLint, Prettier), then hands create-vue the full set non-interactively with --bare (no example app — you're layering shadcn on top).

  • Pass a feature as a flag (--vue-router) → it's enabled, no prompt.
  • Omit it → you're asked. Answer y to include it.
  • Non-TTY (CI) or every feature already passed → no prompts.

Development

npm install
npm test        # vitest; wipes ./tmp/test before each run