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

kikitocn

v1.1.0

Published

CLI to install Kikito CN components — 199+ animated React components for Next.js and Vite with Tailwind CSS v4

Readme

kikitocn

The official CLI for Kikito CN — a React component library built with Tailwind CSS v4 and Framer Motion.

npm version npm downloads Node.js License: MIT


What is Kikito CN?

Kikito CN is a collection of 196+ animated, production-ready React components — buttons, modals, inputs, carousels, data tables, charts, and more. Every component is copy-owned: source lives in your project, not in a black-box dependency.

The CLI handles setup, token injection, and component installation automatically.


Quick Start

npx kikitocn init

That's it. The CLI detects your framework, package manager, and CSS file automatically, then asks a few quick questions.


Installation

# No install needed — use npx
npx kikitocn <command>

# Or install globally
npm install -g kikitocn

Commands

init

Set up Kikito CN in your project. Detects your stack and writes kikitocn.json, injects design tokens into your CSS, creates utils.ts with cn(), and installs peer dependencies.

npx kikitocn init

add

Add one or more components. Resolves dependencies automatically and installs any required npm packages.

npx kikitocn add button
npx kikitocn add button modal input
npx kikitocn add accordion card badge avatar

list

Browse all available components grouped by category with version and dependency info.

npx kikitocn list
npx kikitocn list --group inputs

doctor

Check that your project is correctly configured — tokens imported, utils present, packages installed, registry reachable.

npx kikitocn doctor

How it works

npx kikitocn init
  └─ writes kikitocn.json (config)
  └─ fetches kikitocn-tokens.css (design tokens)
  └─ injects @import into your global CSS
  └─ creates src/lib/utils.ts with cn()
  └─ installs clsx + tailwind-merge

npx kikitocn add button
  └─ fetches Button.tsx from the registry
  └─ resolves registry dependencies (e.g. ripple-button → button)
  └─ installs npm deps (e.g. motion)
  └─ writes files to your components dir

Requirements

| Requirement | Version | | ---------------------- | ---------- | | Node.js | ≥ 18 | | React | ≥ 18 | | Tailwind CSS | v4 | | Next.js / Vite / Remix | any recent |


Configuration

After init, a kikitocn.json is created at your project root:

{
  "version": "1",
  "componentsDir": "src/components/ui",
  "utils": "src/lib/utils",
  "tailwind": {
    "css": "src/app/globals.css"
  },
  "registry": "https://raw.githubusercontent.com/devjuanmarcos/kikito-tv-oficial/main/registry"
}

All paths are configurable during init or by editing the file directly.


Component categories

| Category | Examples | | -------------- | --------------------------------------------------------------- | | inputs | Button, RippleButton, FlipButton, Input, Select, Slider, Switch | | display | Card, Badge, Avatar, Accordion, Carousel, Timeline | | overlay | Modal, Drawer, Tooltip, Popover, DropdownMenu | | navigation | Tabs, Pagination, Breadcrumb, Menubar | | data | DataTable, DataGrid, Calendar, Command | | charts | AreaChart, BarChart, LineChart, PieChart | | feedback | Toast, Alert, Progress, Skeleton, Spinner | | layout | Collapsible, Separator, ScrollArea, ResizablePanels |


Links


License

MIT © Juan Marcos