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

@wm-storefront/commerce-ui

v0.1.2

Published

Shared commerce components + providers. Brand values injected via StorefrontProvider.

Readme

@wm-storefront/commerce-ui

Shared commerce components and providers for Medusa storefronts — product grids, cart drawer, variant picker, filter sidebar, checkout pieces — with every brand value injected, never imported.

Part of commerce-packages.

Install

bun add @wm-storefront/commerce-ui

Peer dependencies you must provide: react, react-dom (>=19), @tanstack/react-query (>=5), @tanstack/react-router (>=1.170), sonner (>=2), lucide-react (>=0.500). These are peers rather than dependencies on purpose — two copies of the router means no route context, and two copies of sonner means toasts silently vanish. ESM only.

@wm-storefront/commerce-core and @wm-storefront/ui come along as regular dependencies.

The injection seam

One provider carries everything, read with useStorefront():

import { StorefrontProvider, createStorefrontQueries } from "@wm-storefront/commerce-ui";
import { createCommerceApi } from "@wm-storefront/commerce-core";

const api = createCommerceApi({ /* … */ });
const queries = createStorefrontQueries(api, defaultRegionId);

<StorefrontProvider api={api} queries={queries} config={{
  storagePrefix: "acme",
  siteName: "Acme",
  defaultRegionId,
  defaultCurrency: "eur",
  // optional, each with a neutral fallback:
  Wordmark, colourSwatches, inlineImage, copy,
}}>
  {children}
</StorefrontProvider>

Two rules that will cost you real debugging time otherwise:

  • Build queries once. The same object must be used in your route loaders and passed to the provider. Two instances means two cache keys, so every SSR prefetch is refetched on hydration.
  • Read query options from context, never import them directly, for the same reason.

Every optional config entry has a neutral fallback — a store that sets nothing still renders sensibly. Wordmark falls back to siteName text, absent colourSwatches renders a checkbox list, and every copy.* string has plain default wording.

Providers

Mount them in this order, inside a StorefrontProvider:

RegionProvider → AuthProvider → FavoritesProvider → CartProvider

Auth wraps Cart so login can claim the guest cart.

Theming

Components use the token contract from @wm-storefront/config, and Tailwind needs to be pointed at the built package:

@source "../node_modules/@wm-storefront/commerce-ui/dist";

License

MIT © Mko Matevosyan