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

@candy.thieves/ui-kit-lumos

v0.0.52

Published

🎨 **Component library for **Lumos app** β€” a unified design system and interface elements.**

Readme

Lumos UI-kit

🎨 Component library for Lumos app β€” a unified design system and interface elements.

πŸ“– Description:
UI Kit is a centralized library of reusable components created to ensure interface consistency across the Lumos app ecosystem.

The project is built on React and TypeScript, using Storybook for component documentation and visual testing. Build is optimized with Vite.

πŸ‘₯ Team:

Team-lead - Vladislav Kravchenko

Front-end:

πŸ”„ Deploy

πŸ”— Related Projects

UI-kit Lumos npm-package β€” a UI component library (UI-kit) for the Lumos application

UI-kit Lumos repository β€” UI-kit library repository for the Lumos application

Lumos app repository β€” main application using the UI-kit

Lumos app deploy link β€” deployment link for the application using the UI-kit

Figma Design β€” mockups and design system

πŸ“‹ Instructions for Integrating UI-kit with the app

πŸ“¦ UI-kit library installation

npm install @candy.thieves/ui-kit-lumos@latest
# or
yarn add @candy.thieves/ui-kit-lumos@latest
# or
pnpm add @candy.thieves/ui-kit-lumos@latest

βš™οΈ Basic Setup

🌐 Global Style import for React app (Vite, CRA)

🎨 Add the styles to main.tsx:

// my-vite-app/src/main.tsx

import '@candy.thieves/ui-kit-lumos/dist/index.css'

πŸ’» Using Components

// my-vite-app/src/components/MyComponent.tsx

import { Button } from '@candy.thieves/ui-kit-lumos'
import { Typography } from '@candy.thieves/ui-kit-lumos'

export const MyComponent = () => {
  return (
    <div>
      <Typography variant={'h2'} color={'green'}>
        How to use UI-kit components
      </Typography>

      <Button variant="primary" fullWidth onClick={() => console.log('clicked')}>
        Click me!
      </Button>
    </div>
  )
}

🌐 Global Style import for Next.js (App Router)

🎨 Add the styles to your root layout file:

// my-next-app/app/layout.tsx

import '@candy.thieves/ui-kit-lumos/dist/index.css'
import type { Metadata } from 'next'

export const metadata: Metadata = {
  title: 'My Next.js App',
}

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  )
}

πŸ’» Using Components

// my-next-app/components/MyComponent.tsx

'use client'

import { Button, Typography } from '@candy.thieves/ui-kit-lumos'

export const MyComponent = () => {
  return (
    <div>
      <Typography variant={'h2'} color={'green'}>
        How to use UI-kit components
      </Typography>

      <Button variant="primary" fullWidth onClick={() => console.log('clicked')}>
        Click me!
      </Button>
    </div>
  )
}

πŸš€ Getting started locally with the UI-kit library

Follow these steps to run the application locally:

  1. Clone the repository:

    git clone https://github.com/candysthieves/lumos-ui-kit.git
  2. Navigate to the project directory:

    cd lumos-ui-kit
  3. Switch to the develop branch:

    git checkout develop
  4. Install dependencies:

    pnpm install

    If you have problems with running the script, use the following command in the CLI:

    pnpm install --legacy-peer-deps
  5. Launch the StoryBook local development server to visually test components:

    pnpm run storybook
  6. Access the application:

    Open your browser and navigate to the link provided in the CLI.*

βš™οΈAvailable Scripts

  • dev: πŸ’» Starts a local Vite development server for quick debugging of the application.

    pnpm run dev
  • build: πŸ“¦ Checks the TypeScript, then it builds an optimised production build of the project.

    pnpm run build
  • type:check: πŸ”· Checks TypeScript types without generating files; for validation purposes only.

    pnpm run type:check
  • stylelint:check: 🎨 Checks SCSS files for stylelint errors.

    pnpm run stylelint:check
  • stylelint:fix: πŸ”§ Automatically fixes SCSS stylelint errors.

    pnpm run stylelint:fix
  • format: βœ… Checks and automatically formats code with Prettier.

    pnpm run format
  • lint: πŸ” Runs ESLint to check for code quality issues and automatically fixes ESLint errors.

    pnpm run lint
  • preview: πŸ‘€ Starts a local server to preview the production build.

    pnpm run preview
  • storybook: ✨ Starts a local server to preview the production build.

    pnpm run storybook
  • build-storybook: 🌐 Starts a local server to preview the production build.

    pnpm run build-storybook
  • prepare: βš™οΈA lifecycle script that Husky uses to set up Git hooks. This is automatically run after npm install.

    pnpm run build-storybook