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

kawarem-dashboard

v0.2.6

Published

CLI toolkit for bootstrapping a Kawarem dashboard and dropping in prebuilt blocks (UI, shared components, layouts, hooks, utils, schemas, and pages) from the bundled registry. Ships a Vite + React + TypeScript + Tailwind starter so you can go from zero to

Downloads

1,051

Readme

kawarem-dashboard CLI

CLI toolkit for bootstrapping a Kawarem dashboard and dropping in prebuilt blocks (UI, shared components, layouts, hooks, utils, schemas, and pages) from the bundled registry. Ships a Vite + React + TypeScript + Tailwind starter so you can go from zero to running dashboard quickly.

Prerequisites

  • Node.js 18+ (20+ recommended)
  • npm, pnpm, or yarn (auto-detected when installing deps)

Quick start: scaffold a project

  1. Create the project (empty folder required):
npx kawarem-dashboard init my-dashboard
  1. Move into the project, install, and start dev:
cd my-dashboard
npm install
npm run dev

init copies the template into the target folder, renames gitignore -> .gitignore, sets the package name, writes kawarem-dashboard.json with expected paths, and adds a kawaremDashboard.initialized flag to package.json.

Add components/blocks

  • See what is available:
kawarem-dashboard list
  • Add one or more blocks (required blocks are auto-added first):
kawarem-dashboard add login-page          # also installs login-form, login-schema
kawarem-dashboard add ui-all              # installs the full UI kit
kawarem-dashboard add badge table dialog  # add multiple at once

What happens when you run add:

  • Fails early if the project is not initialized via kawarem-dashboard.json or the package marker.
  • Checks for the @/* path alias in tsconfig.json/jsconfig.json and warns if missing.
  • Copies each block's files from registry/files/* into the target paths (for example src/components/ui, src/components/shared, src/layout, src/hooks, src/utils, src/schema, src/base, src/pages).
  • Prompts before overwriting existing files; skips files marked skipIfExists.
  • Collects npm dependencies declared by each block and installs them using your detected package manager.

Commands

  • kawarem-dashboard --help or no args: show command help.
  • kawarem-dashboard init [dir]: scaffold a new project in dir (prompts if omitted). Requires empty folder.
  • kawarem-dashboard list: list all registry blocks with their types.
  • kawarem-dashboard add <name...>: add one or more registry blocks, including their requires chain and npm dependencies.
  • kawarem-dashboard validate: sanity-check the registry files, command exports, and the project's @/* alias configuration.

Registry at a glance

  • UI: alert-dialog, badge, calendar, chart, dialog, dropdown-menu, input, label, popover, select, switch, table, textarea, ui-all (aggregated UI kit).
  • Shared: actions-menu, chart-bar-active, chart-pie-donut, custom-calendar, custom-image, delete-alert, dialog-component, field, field-file, field-select, get-status-badge, image-file-input, logo, pagination, search-input, section-title.
  • Layout/Base/Page/Schema/Other: auth-page-shell, dashboard-layout, details-container, header, header-label, sidebar, sidebar-dropdown, sidebar-link, login-page, login-form, login-schema, header-items, sidebar-items, use-header-store, find-label-by-href.

Notes

  • The template is Vite + React + TypeScript + Tailwind with @/* path alias enabled out of the box.
  • If you use an existing project, ensure an @/* alias exists and add a kawarem-dashboard.json marker (or set kawaremDashboard.initialized in package.json) so add can run.