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

@xebecship/ui

v0.0.7

Published

Xebec UI - A React component library for building modern web applications.

Downloads

502

Readme

@xebecship/ui

A high-performance, tree-shakable component library built on top of Shadcn UI and Base UI, powered by Tailwind CSS v4 and React 19.

[!WARNING] Alpha Release: This package is currently in active development. Components, hooks and APIs are subject to breaking changes until version 1.0.0. Use with caution in production environments.

Features

  • Tree-shakable: Import only what you use.
  • Tailwind v4: Built with the latest CSS-first engine.
  • Custom Branded: Pre-configured with Xebec brand identity and themes.
  • Accessible: Built on Radix UI and Base UI primitives.
  • Type Safe: First-class TypeScript support.

Installation

npm install @xebecship/ui

pnpm add @xebecship/ui

yarn add @xebecship/ui

Peer Dependencies

Ensure your project has the following peer dependencies installed:

{
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0",
    "tailwindcss": "^4.0.0"
  }
}

Setup

1. Import Styles

Import the library's CSS at the root of your application (e.g., main.tsx or _app.tsx). This includes the Xebec brand theme and Tailwind variables.

TypeScript

import "@xebecship/ui/style.css";

2. Configure Tailwind v4

Since @xebecship/ui uses Tailwind CSS v4, ensure your tailwind.config or CSS entry point is set up to process the components. In v4, you can simply import the library's theme variables into your main CSS file:

@import "tailwindcss";
@import "@xebecship/ui/style.css";

Usage

You can import components directly from the package. Thanks to ESM and preserved modules, your bundler will automatically tree-shake unused components.

import { Button, Card, CardHeader, CardTitle } from "@xebecship/ui";

export default function App() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Xebec Component</CardTitle>
      </CardHeader>
      <Button variant="default" onClick={() => console.log("Clicked!")}>
        Ship It
      </Button>
    </Card>
  );
}

Available Components

This library exports a wide range of customized Shadcn components, including:

  • Inputs: Input, Select, Checkbox, InputOTP
  • Layout: Card, Resizable, Accordion, Tabs
  • Feedback: Sonner (Toaster), Vaul (Drawers)
  • Data: Recharts wrappers, Table, Calendar
  • Icons: Pre-configured @tabler/icons-react integration

Theme Customization

The library uses CSS variables for theming. You can override the Xebec brand colors by redefining these variables in your local CSS:

:root {
 --primary: 210 100% 50%; /_ Your custom primary color _/
 --radius: 0.75rem;
}

License

MIT © Xebec Ship