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

@unoverse-platform/marketplace

v0.1.84

Published

The Unoverse marketplace: components, atoms and styles, prompt blocks, skills, and declarative nodes. Definitions only, one version, installed per item.

Readme

Unoverse Marketplace

The shared library every Unoverse universe can install rather than author: components, atoms and styles, prompt blocks, skills, declarative nodes and recipes.

A universe takes what it wants, one item at a time, and holds it in its own database.

The definitions are data

A component is a tree of primitives, a node is a description of an HTTP call, a prompt block is markdown. None of it executes on its own, and installing it outside a universe does nothing at all.

That is deliberate, and it is a security property before it is a design one: data is safe to read, copy, review and share before you take it.

It also means this repository is readable as documentation. To see how Unoverse models an interface, read definitions/components/card/card.yaml rather than a guide about it.

What is inside

definitions/
  catalogue.json  every item, with a content fingerprint and its browse fields
  components/     design-system components, a Switch of layouts over named states
  atoms/          the smallest shared pieces components compose from
  styles/         the token contract and default theme they render against
  blocks/         prompt blocks, referenced from any system prompt as {{prompt.<name>}}
  skills/         agent skills, selected by their whenToUse
  nodes/          declarative node manifests (node / interface / config / api / test)
  recipes/        whole workflows, copied onto a canvas rather than installed

Using it

This folder is served as a static catalogue. A universe reads catalogue.json to see what is on offer, and fetches an item's own files when you install it.

Installing writes a row. The item lands in the universe's own database and belongs to it from then on. Nothing is referenced or streamed at runtime, so a universe keeps working whether or not the catalogue is reachable.

An update is a fingerprint that no longer matches. Every item carries a hash over its canonicalised definition, so a universe compares the catalogue against what it holds and needs no version to track. Reformatting is not a change: the hash covers the meaning, not the bytes.

A recipe is the exception. It is catalogued so it can be browsed, but it is copied onto a canvas rather than installed, because a newer one must never reach into a workflow somebody has already built.

Nodes are manifests. A node names an auth scheme, a transport and a response mapping. The platform's own executor performs the call, and it may only reach the hosts the package declares in allowedHosts.

Licence

MIT. Read it, learn from it, take the ideas.