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

@deepuic/minimeui

v0.4.0

Published

TailwindCSS ve TypeScript ile oluşturulmuş modern UI komponentleri

Readme

MiniMeUI

TailwindCSS ve TypeScript ile oluşturulmuş modern UI komponentleri.

Kurulum

npm install @deepuic/minimeui
# veya
yarn add @deepuic/minimeui
# veya
pnpm add @deepuic/minimeui

Kütüphane kurulduğunda, otomatik olarak aşağıdaki işlemleri gerçekleştirir:

  • Gerekli bağımlılıkları (clsx, tailwind-merge) kurar
  • TailwindCSS yapılandırmanızı günceller
  • CSS değişkenlerini global CSS dosyanıza ekler

Kurulum scriptini manuel olarak çalıştırmak için:

npx minimeui-setup

Kullanım

import { Button } from "@deepuic/minimeui/button";

// Temel Kullanım
<Button variant="primary">Tıkla</Button>

// Farklı Varyantlar
<Button variant="default">Default</Button>
<Button variant="success">Success</Button>
<Button variant="danger">Danger</Button>
<Button variant="warning">Warning</Button>
<Button variant="outline">Outline</Button>
<Button variant="ghost">Ghost</Button>
<Button variant="link">Link</Button>
<Button variant="subtle">Subtle</Button>

// Farklı Boyutlar
<Button size="xs">XS</Button>
<Button size="sm">SM</Button>
<Button size="md">MD</Button>
<Button size="lg">LG</Button>
<Button size="xl">XL</Button>

// Köşe Yuvarlamaları
<Button rounded="none">Köşeli</Button>
<Button rounded="sm">Az Yuvarlak</Button>
<Button rounded="md">Orta Yuvarlak</Button>
<Button rounded="lg">Çok Yuvarlak</Button>
<Button rounded="full">Tam Yuvarlak</Button>

// Yükleniyor Durumu
<Button isLoading>Yükleniyor</Button>

// İkonlu Butonlar
<Button leftIcon={<SvgIcon />}>Sol İkonlu</Button>
<Button rightIcon={<SvgIcon />}>Sağ İkonlu</Button>

Otomatik Kurulum Hatası Durumunda

Otomatik kurulum çalışmadıysa, şu adımları manuel olarak takip edin:

  1. Bağımlılıkları yükleyin:
npm install clsx tailwind-merge
  1. TailwindCSS yapılandırma dosyanıza şu satırı ekleyin:
// tailwind.config.js veya tailwind.config.ts
module.exports = {
  content: [
    // ... diğer içerikler
    "./node_modules/@deepuic/minimeui/**/*.{js,ts,jsx,tsx}"
  ],
  // ... diğer yapılandırmalar
}
  1. Global CSS dosyanıza CSS değişkenlerini ekleyin:
:root {
  --background: #ffffff;
  --foreground: #171717;
  --primary: #0066cc;
  --primary-foreground: #ffffff;
  --accent: #f3f4f6;
  --accent-foreground: #111827;
  --input: #e5e7eb;
  --border: #e2e8f0;
  --ring: #0066cc;
  
  --radius-sm: 0.125rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
    --primary: #3b82f6;
    --primary-foreground: #ffffff;
    --accent: #1f2937;
    --accent-foreground: #f9fafb;
    --input: #374151;
    --border: #2d3748;
    --ring: #3b82f6;
  }
}

Geliştirme

# Geliştirme ortamını başlat
npm run dev

# Kütüphaneyi oluştur
npm run build:lib

# Tüm projeyi oluştur
npm run build

Desteklenen Komponentler

  • Button: Çeşitli varyant, boyut ve özellikler sunan buton komponenti
    • Varyantlar: default, primary, success, danger, warning, outline, ghost, link, subtle
    • Boyutlar: xs, sm, md, lg, xl
    • Özellikler: rounded, isLoading, leftIcon, rightIcon

Lisans

MIT

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.