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

@alien-worlds/uikit

v0.5.8

Published

<p align="center"> <img src="https://i.postimg.cc/nzVx9bmw/UIkit.jpg" width="775"> </p>

Readme

Table of Contents

Tech Stack

Building components used of the project:

  • 📚 Storybook for UI component development and auto-generated docs
  • 👩‍🎤 Storybook theming | for component-scoped styling
  • ⚛️ React declarative component-centric UI
  • ⚛️ ChakraUI declarative component-centric UI and components are extended via this.
  • ⚛️ JEST Testing of Components are covered by JEST (React/Testing Library)

Prerequisites

To work with this repository locally, ensure you have:

  • Node.js 20+ and npm available in your shell.
  • An npm account only if you intend to publish packages.

Installation

To install AW's UI-kit library into an existing project, execute the command:

npm install --save @alienworlds/uikit

To import the UI-kit components into the project:

import { Button } from '@alienworlds/uikit';

<Button> Start </Button>

Development

In order to run the project in a development environment, from the repository folder type in your terminal:

npm install

To compile the project with all required dependencies, from the repository folder type in your terminal:

npm run storybook

This will compile the required dependencies and run the application in the browser.

Releases

Regarding the version number:

  • Use the alpha version 0.x.x-alpha-1.0 to test the new version in the game-ui. This is also useful during development to ensure proper testing.
  • Update the minor or patch version number when you are ready to release the new changes.

There are two separate releases: one for uikit and one for icon. Please follow these steps:

To release uikit:

  • Ensure that you are in the root directory.
  • Proceed with the release process.

To release icon:

  • Navigate to the src/packages/icons directory.
  • Proceed with the release process from there.

Steps to release a new version:

  1. Ensure that you are using Node.js 20+ and a recent npm version.
  2. Confirm that you have updated the version number in the package.json file as mentioned above.
  3. Execute the command npm run release.

Notes

  • Installing public packages from npm does not require a token.
  • Publishing requires npm authentication (for CI, set NPM_TOKEN; for local publishing, use npm login).