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

archzos-ui

v1.1.4

Published

React component library with 22 component groups, TypeScript support, and design tokens

Readme

archzos-ui

A comprehensive React component library with 22 component groups, built with TypeScript and modern design patterns.

npm version TypeScript React License: MIT

Installation

npm install archzos-ui

Features

  • 🎨 22 Component Groups - Complete UI system with 38+ components
  • 🚀 TypeScript Support - Full type definitions included
  • 📦 Lightweight - Only 23KB compressed
  • ⚛️ React 16.8+ - Compatible with React 16.8, 17, 18, 19, and future versions
  • 🎯 Design Tokens - Consistent design system with customizable tokens
  • 🔧 Zero Dependencies - Only React as peer dependency

Quick Start

import React from 'react'
import { Button, Badge, Navbar, Footer } from 'archzos-ui'

function App() {
  return (
    <>
      <Navbar />
      <div>
        <Button variant="primary">Click Me</Button>
        <Badge variant="success">New</Badge>
      </div>
      <Footer />
    </>
  )
}

Component Categories

Layout Components (3)

  • Navbar - Navigation bar with brand, links, and user menu
  • Footer - Site footer with links and copyright
  • SettingsSidebar - Settings panel sidebar

Home Components (9)

  • HeroSection - Landing page hero section
  • StatsBar - Statistics display bar
  • FeaturedModels - Model showcase grid
  • FeaturedAgents - AI agents showcase
  • FeatureCards - Feature highlight cards
  • CTACards - Call-to-action cards
  • Announcements - News and announcements
  • GettingStartedSteps - Onboarding steps
  • ProviderLogoGrid - Partner/provider logos

Common Components (4)

  • Button - Button with multiple variants
  • Badge - Status badges and labels
  • SearchInput - Search input field
  • UserDropdown - User account dropdown menu

Models Components (2)

  • ModelCard - Individual model display card
  • ModelsFilterBar - Model filtering controls

Rankings Components (2)

  • RankingsTabs - Tab navigation for rankings
  • TopAppsList - Top applications list

Settings Components (2)

  • AccountSettings - Account settings form
  • APIKeysTable - API key management table

Page Templates (4)

Complete page layouts ready to use:

  • HomePage - Full home page template
  • ModelsPage - Models listing page
  • RankingsPage - Rankings page
  • SettingsPage - Settings page

Design Tokens

Access design tokens for consistent styling:

import { tokens } from 'archzos-ui/src/tokens'

const styles = {
  color: tokens.colors.blue500,
  fontSize: tokens.typography.lg,
  padding: tokens.spacing.md,
  borderRadius: tokens.radius.md
}

Examples

Basic Button

import { Button } from 'archzos-ui'

<Button variant="primary" size="md" onClick={handleClick}>
  Click Me
</Button>

Navigation Bar

import { Navbar } from 'archzos-ui'

<Navbar />

Model Card

import { ModelCard } from 'archzos-ui'

<ModelCard
  model={{
    id: 'gpt-4',
    name: 'GPT-4',
    description: 'Advanced language model',
    context: '128k',
    pricing: { prompt: 0.01, completion: 0.03 }
  }}
/>

Complete Page

import { HomePage } from 'archzos-ui'

function App() {
  return <HomePage />
}

TypeScript Support

All components are fully typed. TypeScript definitions are included automatically.

import { Button, ButtonProps } from 'archzos-ui'

const MyButton: React.FC<ButtonProps> = (props) => {
  return <Button {...props} />
}

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

Contributing

This package is maintained using an AI agent system. For contributing guidelines, see our GitHub repository.

License

MIT © archzos

Links

Version History

  • v1.1.3 - Added README and documentation
  • v1.1.2 - Cleaned structure, improved organization
  • v1.1.1 - Fixed React peer dependencies (>=16.8.0)
  • v1.1.0 - Initial release with 22 component groups

Built with ❤️ by archzos