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

@jterrazz/manifest

v0.2.0

Published

Your site's presence, declared once — a manifest projected into every machine-facing surface (metadata, identity JSON-LD, sitemap, robots, llms.txt), with an audit that verifies the live site against it.

Readme

@jterrazz/manifest

Your site's presence, declared once. The manifest declares — identity, pages, discovery — the projections derive every surface from it (metadata, identity JSON-LD, sitemap, robots.txt, llms.txt), and the audit (run through specification.website() from @jterrazz/test) verifies the live site against it.

Install

npm install @jterrazz/manifest

Declare

// manifest.config.ts
import { defineSite, person } from '@jterrazz/manifest';

export const site = defineSite({
    address: 'https://example.com',
    languages: { all: ['en', 'fr'], main: 'en' },
    identity: person({ name: '…', headline: '…', occupation: '…', profiles: [] }),
    voice: { brand: '…', description: '…', titlePattern: '%s | …' },
    sharing: { card: { image: '/og.png', caption: '…', width: 1200, height: 630 } },
    discovery: { hidden: ['/api/'], aiCrawlers: 'welcome' },
    channels: { feed: true, llms: true },
});

Project (Next.js)

// app/sitemap.ts
export default createSitemap(site, [articlesProvider, pagesProvider]);
// app/robots.ts
export default createRobots(site);
// app/llms.txt/route.ts
export const GET = createLlms(site, [articlesProvider]);

Verify

// specs/website/manifest/manifest.test.ts
import { audit } from '@jterrazz/manifest/testing';
audit.website(website, site); // website from specification.website() (@jterrazz/test)

The model speaks the language of intent; the projections speak the language of standards. The domain knowledge (SEO, GEO, structured data, content) ships as agent skills in skills/.

MIT © Jean-Baptiste Terrazzoni