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

@leadpulse/pseo

v0.1.0

Published

Programmatic SEO content engine: scaffold, compile, and render markdown-driven pSEO pages (integrations, comparisons, alternatives, roundups, head-to-head) for any landing page.

Readme

pseo

A programmatic-SEO content engine. Markdown is the source of truth for your SEO pages; you (or your LLM/agent) author pages, components, and layouts, and the engine compiles and renders them for any landing page.

The package ships the structure only — no built-in pages, layouts, or components. Everything is generated by your harness and read from your project.

Install

Published to GitHub Packages. Point the @daweng-pam scope at the GitHub registry (project .npmrc or ~/.npmrc):

@daweng-pam:registry=https://npm.pkg.github.com
# Run directly, no install:
npx @daweng-pam/pseo init

# Or install as a dev dependency:
npm i -D @daweng-pam/pseo
pnpm add -D @daweng-pam/pseo

Requires Node >= 20. Zero runtime dependencies.

Quickstart

# 1. First-time setup: publish target + output frameworks.
npx @daweng-pam/pseo init

# 2. Scaffold a markdown page (source of truth).
npx @daweng-pam/pseo create /integrations/facebook-to-hubspot "Sync Facebook leads to HubSpot"

# 3. Compile every page to JSON + React/HTML output.
npx @daweng-pam/pseo compile

# Inspect what exists in the project.
npx @daweng-pam/pseo list pages
npx @daweng-pam/pseo list layouts
npx @daweng-pam/pseo list components

Commands

| Command | Description | | --- | --- | | pseo init | Wizard: writes content-engine.config.json + empty components.json / layouts.json. | | pseo create <path> [desc] | Scaffold a markdown page at <path> (writes pages/<slug>.md + compiles it). Options: --layout, --industry, --content-type. | | pseo compile | Compile every page in pages/ to JSON + rendered React/HTML under the output dir. | | pseo list pages\|layouts\|components | List authored pages, layouts, or components. |

Project layout

content-engine.config.json   # publish target + frameworks + domain
components.json              # component definitions (your harness authors these)
layouts.json                 # layout definitions (your harness authors these)
pages/*.md                   # markdown page source of truth
content/*.json               # compiled page data
content/render/<fw>/*        # rendered React (.tsx) / HTML (.html)

How it works with an LLM / agent

Pages, components, and layouts are authored by your harness, then compiled:

  1. Componentsadd_component (MCP) or edit components.json: name + props schema. The React/HTML renderer maps a component name to its renderer.
  2. Layoutsadd_layout (MCP) or edit layouts.json: a named list of sections ({ name, kind } where kind is slot or blocks). Layouts are resolved by the page's explicit layout, then contentType, then industry.
  3. Pages — markdown with YAML front-matter + fenced component blocks (```chart, ```table, …). pseo compile turns them into JSON + rendered output.

The companion @daweng-pam/content-engine-mcp package exposes the same store over MCP so agents can do all of this non-interactively, and @daweng-pam/content-engine-react renders the result in a React app.

Page data format

A page is front-matter + blocks:

---
slug: facebook-to-hubspot
title: Facebook to HubSpot
metaDescription: Sync Facebook leads to HubSpot in real time.
h1: Facebook to HubSpot Integration
contentType: integration
layout: integration
---

A markdown introduction.

```chart
title: Leads per month
labels: Jan, Feb, Mar
data: 120, 180, 240

The front-matter grammar is `key: value` + indented `- item` lists; fenced
blocks use the same grammar for their props.