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

orizon

v0.2.2

Published

Ant Design API on shadcn/ui primitives — 68 components for React with Tailwind CSS

Readme

Orizon

Ant Design API on shadcn/ui primitives. 68 production-ready React components with full TypeScript support, built with Tailwind CSS v4.

Note: I'm a junior developer and started this as a side project to learn React component architecture. Currently Orizon works with Vite only. Support for Next.js and other frameworks may come in the future.

Documentation | GitHub

Install

npm install orizon

Peer dependencies — your project needs:

npm install react react-dom tailwindcss @tailwindcss/vite

For the Form component (optional):

npm install react-hook-form @hookform/resolvers zod

Setup (Vite)

  1. Add the Tailwind plugin to vite.config.ts:
import tailwindcss from "@tailwindcss/vite";

export default defineConfig({
  plugins: [react(), tailwindcss()],
});
  1. Add these 3 lines to your app's CSS file:
@import "tailwindcss";
@import "orizon/preset.css";
@source "../node_modules/orizon/dist";

That's it. The @source directive tells Tailwind to scan Orizon's compiled JS for utility classes.

Usage

import { Button, Input, Form, Table, Modal, message } from "orizon";

function App() {
  return (
    <div>
      <Button type="primary" onClick={() => message.success("Hello!")}>
        Click me
      </Button>
    </div>
  );
}

The API follows Ant Design exactly — same props, same patterns:

// Compound components
<Input.Password placeholder="Password" />
<Form.Item label="Name" name="name">
  <Input />
</Form.Item>

// Static methods
Modal.confirm({ title: "Sure?", onOk: () => {} });
message.success("Saved!");
notification.open({ message: "Done" });

Components (68)

| Category | Components | |----------|-----------| | General | Button, FloatButton, Typography | | Layout | Space, Flex, Grid, Divider, Layout, Masonry, Splitter | | Navigation | Anchor, Breadcrumb, Dropdown, Menu, Pagination, Steps, Tabs | | Data Entry | AutoComplete, Cascader, Checkbox, ColorPicker, DatePicker, Form, Input, InputNumber, Mentions, Radio, Rate, Select, Slider, Switch, TimePicker, Transfer, TreeSelect, Upload | | Data Display | Avatar, Badge, Calendar, Card, Carousel, Collapse, Descriptions, Empty, Image, List, Popover, QRCode, Segmented, Statistic, Table, Tag, Timeline, Tooltip, Tour, Tree | | Feedback | Alert, Drawer, Message, Modal, Notification, Popconfirm, Progress, Result, Skeleton, Spin, Watermark | | Other | Affix, App, ConfigProvider |

Theming

Swap the CSS import to completely change the look of all components:

/* Default theme */
@import "orizon/preset.css";

/* Corporate theme — teal primary, large radius */
@import "orizon/themes/corporate.css";

Or override individual CSS variables:

:root {
  --primary: oklch(0.6 0.25 150);    /* green primary */
  --radius: 0.5rem;                   /* rounder corners */
}

Or use the ConfigProvider at runtime:

import { ConfigProvider } from "orizon";

<ConfigProvider theme={{ algorithm: "dark", token: { colorPrimary: "#1890ff" } }}>
  <App />
</ConfigProvider>

CLI

Orizon includes a CLI to help you get started:

npx orizon init        # scaffold a new Vite + Orizon project
npx orizon add button  # show usage info for a component
npx orizon list        # list all 68 components

License

MIT

Author

Vikas Patel — Junior Developer, learning by building.