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

@aayushsoam/ui

v0.16.0

Published

The shared design system for react ui @ aayush soam. components, hooks, utils, fonts, overlays, etc.

Downloads

177

Readme

nous ui

the shared design system for react ui @ nous. components, hooks, utils, fonts, overlays, etc.

setup

npm i @nous-research/ui or pnpm i @nous-research/ui

import the global styles in your app's root css file:

@import 'tailwindcss';
@import '@nous-research/ui/styles/globals.css';

globals.css includes the design-system tokens, utilities, component styles, and default --font-* variable values, but does not register font files. Import the optional font stylesheet first if your app wants CSS-managed @font-face declarations:

@import 'tailwindcss';
@import '@nous-research/ui/styles/fonts.css';
@import '@nous-research/ui/styles/globals.css';

Next.js apps should prefer next/font/local with the exported @nous-research/ui/fonts/* files and map them to the same --font-* variables. Apps can also provide their own --font-* variables while keeping the design-system utilities from globals.css.

usage

everything exports from the top level export:

import {
  Button,
  Grid
  // whatever else!
} from '@nous-research/ui'

local development

two ways to preview components while editing:

storybook (per-component, primary)

pnpm storybook        # dev server on http://localhost:6006
pnpm build-storybook  # static build → ./storybook-static

stories live in stories/*.stories.tsx. the Overview story re-renders the entire /ds page, so you always have a kitchen-sink view alongside the isolated component stories. the Lens toolbar above the preview cycles between the lens presets (0, 1, 2, 3, 4, 5, 5i, 6).

next.js showcase (kitchen-sink, secondary)

pnpm dev              # next dev on http://localhost:3000 → redirects to /ds

app/ds/page.tsx is the same content the Overview story renders.

publishing

pnpm build     # tsc → dist/ + copies css / fonts / assets

releases are published automatically when PRs merge to main. the github workflow bumps the package version from the merged PR labels (major, minor, or patch), pushes the tag, publishes to npm via trusted publishing, and creates a GitHub Release with notes from CHANGELOG.md.

before merging:

  1. leave package.json at the current published version on main (CI bumps it after merge).
  2. label the PR so the bump matches your changelog section:

| PR label | bump from 0.15.0 | changelog heading | | --- | --- | --- | | patch (default) | 0.15.1 | ## 0.15.1 | | minor | 0.16.0 | ## 0.16.0 | | major | 1.0.0 | ## 1.0.0 |

  1. add that ## X.Y.Z section to CHANGELOG.md — release notes are pulled from it for npm and GitHub Releases.

the same file is rendered in Storybook under Docs → Changelog and shipped in the npm tarball.

the published tarball ships dist/, src/, README.md, and CHANGELOG.md (see files in package.json). inline source maps are embedded in dist/ so consumers can debug into the TypeScript source.

deployment

vercel.json builds both and serves them on a single Next.js deployment:

  • / and /ds — the Next.js showcase (same as pnpm dev)
  • /storybook — the static Storybook build (copied to public/storybook/ before next build so Next serves it like any other static asset)

Want Storybook-only? replace buildCommand with pnpm build-storybook and add "outputDirectory": "storybook-static". app/ds can stay for local pnpm dev either way — the Overview story renders the same content.