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

@beweco/aurora-ui

v0.6.57

Published

Bewe Aurora UI Component Library

Readme

@beweco/aurora-ui

Bewe Aurora UI Component Library - A modern, lightweight, and customizable React component library.

Overview

@beweco/aurora-ui is a React component library designed to provide a consistent and beautiful user interface for Bewe applications. Built with TypeScript for type safety and modern development practices, it uses Storybook as its primary development and visualization environment.

Installation

bun install @beweco/aurora-ui

Quick Start

To use the components, you need to wrap your application with the ThemeProvider .

import { ThemeProvider } from '@beweco/aurora-ui';
import { Button } from '@beweco/aurora-ui';

function App() {
  return (
    <ThemeProvider>
      <Button color="primary">
        Hello Aurora UI!
      </Button>
    </ThemeProvider>
  );
}

Development

Prerequisites

  • Bun (v1.0 or higher)

Setup

  1. Clone the repository:
    git clone <repository-url>
  2. Install dependencies:
    bun install

Development with Storybook

This project uses Storybook for component development and visualization. Storybook provides an isolated environment to build, view, and test components in real-time.

To start the Storybook server, run:

bun run storybook

This will open the Storybook interface in your browser, where you can browse all the available components, see their different states (variants, sizes, etc.), and interact with them.

Available Scripts

  • bun run storybook - Starts the Storybook development server.
  • bun run build - Builds the library for production.
  • bun run dev - Builds the library and watches for changes.
  • bun run check - Runs Biome to check for lint issues and apply safe fixes.
  • bun run format - Formats the entire codebase using Biome.
  • bun run build:storybook - Builds a static version of the Storybook site.

Publishing

Preparing a New Release

  1. Update version in package.json:

    bun version patch  # for bug fixes (0.0.x)
    bun version minor  # for new features (0.x.0)
    bun version major  # for breaking changes (x.0.0)
  2. Build the library:

    bun run build

Publishing to NPM Registry

  1. Login to npm (if not already logged in):

    npm login
  2. Publish the package:

    npm publish --access public

    Note: Although the project uses bun, publishing is typically done via npm.

Publishing a Beta Version

For testing purposes, you can publish a beta version:

  1. Tag the version as beta in package.json:

    bun version prerelease --preid=beta
  2. Publish with the beta tag:

    npm publish --tag beta --access public

Users can then install the beta version using:

bun install @beweco/aurora-ui@beta

Contributing

We welcome contributions! Please read our contributing guidelines before submitting pull requests.

Development Workflow

  1. Fork the repository.
  2. Create a feature branch (git checkout -b feature/my-new-feature).
  3. Make your changes in the src directory. Create or update stories in the stories directory.
  4. Use bun run storybook to visualize your changes.
  5. Submit a pull request.

License

MIT License.

Support

For support, please open an issue in the repository or contact the Bewe team.