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

@prss/themes

v1.2.2

Published

Official PRSS themes, published as a single package served over CDN.

Readme

PRSS themes

The official PRSS themes, developed in one repo and published as a single npm package, @prss/themes.

PRSS resolves a theme against a base URL handed to it by the API, and fetches manifest.json, index.html, theme.css, client.js and one <template>.js per template relative to it. The published package mirrors that layout:

build/
  vantage/{manifest.json,index.html,theme.css,client.js,home.js,...}
  slate/{...}

so the API points a theme at .../@prss/themes@<version>/build/<theme>.

Layout

packages/
  _shared/     component layer shared by the themes (not published on its own)
  vantage/     one workspace per theme, each with its own build toolchain
  ...
scripts/
  build-all.js   builds every theme and assembles build/
  verify-build.js  checks each theme ships the files PRSS will ask for

Themes span webpack 4 to 5 and React 16 to 18, so each keeps its own package.json and toolchain rather than sharing a hoisted one. Only the built output is published, so this is invisible to consumers.

_shared is consumed as source, not as a built dependency: each theme compiles it with its own Tailwind config, so the shared components pick up that theme's design tokens. Themes reach it through the @/components/ui, @/hooks and @/lib aliases; everything else under @/ stays theme-local.

Working on a theme

npm install                       # once, at the repo root
npm run build:theme -- vantage    # build one theme
npm run build                     # build all themes and assemble build/
npm run verify                    # check the published layout is complete

Each theme's own build/ is committed. PRSS's theme creator clones a single theme with a sparse checkout and reads build/manifest.json immediately, so a theme directory has to be complete and forkable on its own.

Reproducible builds

The root package-lock.json is committed and is what makes builds reproducible. Neither Babel nor browserslist targets are declared explicitly, so bundle contents otherwise drift with whatever caniuse-lite happens to be installed. Run npm ci rather than npm install when you need to match a previous build exactly.

Premium themes

Paid themes live in a separate private repo and publish as @prss/premium-themes. They are not forkable through the theme creator, which filters them out of the base-theme list.