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

@zeropress/preview-data-validator

v0.4.4

Published

Shared ZeroPress preview data validation core

Downloads

2,029

Readme

@zeropress/preview-data-validator

npm license node

Shared validation core for ZeroPress preview data v0.5.

This package is the canonical runtime contract for preview payloads consumed by:

  • zeropress-theme dev
  • zeropress-admin-api-v2

Install

npm install @zeropress/preview-data-validator

Exports

import {
  PREVIEW_DATA_VERSION,
  assertPreviewData,
  isPreviewData,
  validatePreviewData,
} from '@zeropress/preview-data-validator';

Schema export:

import schemaUrl from '@zeropress/preview-data-validator/preview-data.v0.5.schema.json';

Published schema files are shipped from the package schemas/ directory.

preview-data v0.5 is data-only:

  • no routes block
  • no raw html fields on posts or pages
  • no preformatted published_at / updated_at
  • taxonomy membership is expressed as category_slugs and tag_slugs
  • per-post comment policy is expressed as allow_comments
  • authors are deduplicated in content.authors[]
  • posts reference authors via author_id
  • body source is carried as raw content with explicit document_type
  • pages, categories, and tags do not carry internal id fields
  • site.mediaBaseUrl is required and must be either an empty string or an absolute URI
  • site locale is carried as site.locale
  • site timezone is carried as site.timezone
  • comment rendering policy is carried as site.disallowComments
  • enabled menus are exported in root menus
  • menus is keyed by stable menu_id
  • menu items use title, url, type, target, and recursive children
  • menu item target is _self or _blank
  • menu items do not carry admin-only fields such as reference_id
  • enabled widget areas are exported in root widgets
  • widgets is keyed by stable widget_area_id
  • widget items intentionally fix only the common shell: type, title, and optional settings
  • widget-type-specific settings structure is not enforced by this validator in v0.5
  • optional custom_css carries site-level stylesheet input as { content }

Build tooling is responsible for resolving authors and deriving render-ready route data, including HTML conversion for non-HTML source content.

API

validatePreviewData(data)

Returns:

{
  ok: true,
  errors: [],
  warnings: []
}

assertPreviewData(data)

Throws when the payload is invalid.

isPreviewData(data)

Returns true when the payload is valid.

License

MIT