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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@v0up3r/zt-ui

v0.1.10

Published

lib UI for developers of ZT

Downloads

50

Readme


ZT-UI Library - Next.js Component Library

This project is a Next.js library providing a set of reusable UI components designed to enhance your application with minimal setup. To get started, follow the instructions below.

Getting Started

Prerequisites

Make sure you have the following installed:

  • Node.js >= 16
  • npm, yarn, pnpm, or bun

Installation

Add the library to your Next.js project:

npm install @v0up3r/zt-ui
# or
yarn add @v0up3r/zt-ui

Configuration

Modify the following configuration files:

  • tailwind.config.ts
  • next.config.mjs

Tailwind Configuration

import type { Config } from "tailwindcss";

const config: Config = {
  content: [
    "./pages/**/*.{js,ts,jsx,tsx,mdx}",
    "./components/**/*.{js,ts,jsx,tsx,mdx}",
    "./app/**/*.{js,ts,jsx,tsx,mdx}",
    "./node_modules/@v0up3r/zt-ui/app/components/**/*.{js,ts,jsx,tsx,mdx}"
  ],
  theme: { extend: {} },
  plugins: [],
};
export default config;

Next.js Configuration

const nextConfig = {
  transpilePackages: ['@v0up3r/zt-ui'],
};

export default nextConfig;

Available Components

  • Divider, Button, Input, Table, NavBar, Avatar, Switcher, Checkbox, Autocomplete, Select, Card

Usage Example

import { Button } from '@v0up3r/zt-ui';

export default function HomePage() {
  return (
    <div className="p-4">
      <Button variant="primary" onClick={() => alert('Button Clicked!')}>
        Click Me
      </Button>
    </div>
  );
}

Development

npm run dev

License

This project is licensed under the MIT License.


ZT-UI Library - Biblioteca de Componentes Next.js

Este projeto é uma biblioteca Next.js com componentes reutilizáveis para melhorar sua aplicação com configuração mínima. Siga as instruções abaixo para começar.

Começando

Pré-requisitos

Instale as seguintes dependências:

  • Node.js >= 16
  • npm, yarn, pnpm, ou bun

Instalação

Adicione a biblioteca ao seu projeto Next.js:

npm install @v0up3r/zt-ui
# ou
yarn add @v0up3r/zt-ui

Configuração

Modifique os seguintes arquivos:

  • tailwind.config.ts
  • next.config.mjs

Configuração do Tailwind

import type { Config } from "tailwindcss";

const config: Config = {
  content: [
    "./pages/**/*.{js,ts,jsx,tsx,mdx}",
    "./components/**/*.{js,ts,jsx,tsx,mdx}",
    "./app/**/*.{js,ts,jsx,tsx,mdx}",
    "./node_modules/@v0up3r/zt-ui/app/components/**/*.{js,ts,jsx,tsx,mdx}"
  ],
  theme: { extend: {} },
  plugins: [],
};
export default config;

Configuração do Next.js

const nextConfig = {
  transpilePackages: ['@v0up3r/zt-ui'],
};

export default nextConfig;

Componentes Disponíveis

  • Divisor, Botão, Input, Tabela, NavBar, Avatar, Switcher, Checkbox, Autocomplete, Select, Card

Exemplo de Uso

import { Button } from '@v0up3r/zt-ui';

export default function HomePage() {
  return (
    <div className="p-4">
      <Button variant="primary" onClick={() => alert('Botão Clicado!')}>
        Clique Aqui
      </Button>
    </div>
  );
}

Desenvolvimento

npm run dev

Licença

Este projeto está licenciado sob a Licença MIT.


ZT-UI Library - Biblioteca de Componentes Next.js

Este proyecto es una biblioteca de Next.js con componentes reutilizables que mejoran tu aplicación con una configuración mínima. Sigue las instrucciones a continuación.

Comenzando

Prerrequisitos

Asegúrate de tener instaladas las siguientes dependencias:

  • Node.js >= 16
  • npm, yarn, pnpm, o bun

Instalación

Agrega la biblioteca a tu proyecto Next.js:

npm install @v0up3r/zt-ui
# o
yarn add @v0up3r/zt-ui

Configuración

Modifica los siguientes archivos:

  • tailwind.config.ts
  • next.config.mjs

Configuración de Tailwind

import type { Config } from "tailwindcss";

const config: Config = {
  content: [
    "./pages/**/*.{js,ts,jsx,tsx,mdx}",
    "./components/**/*.{js,ts,jsx,tsx,mdx}",
    "./app/**/*.{js,ts,jsx,tsx,mdx}",
    "./node_modules/@v0up3r/zt-ui/app/components/**/*.{js,ts,jsx,tsx,mdx}"
  ],
  theme: { extend: {} },
  plugins: [],
};
export default config;

Configuración de Next.js

const nextConfig = {
  transpilePackages: ['@v0up3r/zt-ui'],
};

export default nextConfig;

Componentes Disponibles

  • Divisor, Botón, Input, Tabla, NavBar, Avatar, Switcher, Checkbox, Autocomplete, Select, Card

Ejemplo de Uso

import { Button } from '@v0up3r/zt-ui';

export default function HomePage() {
  return (
    <div className="p-4">
      <Button variant="primary" onClick={() => alert('¡Botón Pulsado!')}>
        Pulsa Aquí
      </Button>
    </div>
  );
}

Desarrollo

npm run dev

Licencia

Este proyecto está bajo la Licencia MIT.