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

@artemisintelligence/aperture-component-library

v1.240.0

Published

Aperture's component library

Readme

Aperture Component Library

This repository is utilized for the isolated development, documentation, and design review
of Aperture's component library.

The application is bootstrapped by Create React App, and is powered by Storybook.

The repository is packaged, exported, and made available as a a private NPM package.

Repository Overview

Component development

Components are located within semantically named subfolders inside of src/components.

Components are styled with the CSS in JS paradigm, through the help of Emotion.

Component documentation

Component documentation is generated with the help of Storybook.

Each component is given a corresponding documentation file,
<componentName.stories.js>, located within src/stories.

Documentation files are encouraged for all components, but are not a technical requisite
for a working, consumable, component.

Component exporting

Components within this repository are intended for consumption within the
Aperture web application.

Components are exported in aggregate at src/index.js.

New components must be added to this file's list of exports in order to be
available for consumption in the next package release.

Storybook customizations

In the unlikely event that changes or modifications need to be made to the
repository's Storybook environment, these configuration files are located within
the src/.storybook folder.

Standard additions, deletions, or modifications of components and their stories
should not require any changes within this folder.

Linting

Linting and formatting issues can be identified through 'yarn lint'.
Because linting errors prevent even development builds,
as a temporary measure Airbnb and Prettier extensions are commented out (line: 7) and set to warn (line: 27) within the .eslintrc.js file.

It is recommended that these extensions are temporary enabled and full linting is performed before publishing to the NPM package

Build and Deployment

There are four steps to successfully correlate a change in this repository to a version update in the aperture-component-library NPM package.

Step 1: Ensure the current branch is set to main and that the git working tree is clean.
Step 2: Run yarn build to ensure that the production build files of the repository are in sync with the code base.
Step 3: Use npm version <patch|minor|major> to appropriately version the update.
Step 4: Publish the update with npm publish to appropriately version the update.