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.6.12

Published

Shared ZeroPress preview data validation core

Readme

@zeropress/preview-data-validator

npm license node

Shared validation core for ZeroPress preview data v0.6.

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

Public contract references:

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.6.schema.json';

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

preview-data v0.6 is data-only:

  • root $schema is optional and may be used as an editor/tooling hint
  • 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
  • post public_id values are positive unique integers
  • body source is carried as raw content with explicit document_type
  • site, posts, and pages may carry optional generator-defined scalar metadata in meta
  • posts and pages may carry optional structured JSON content in data for repeated theme UI blocks
  • posts and pages may carry optional discoverability: default, noindex, or delist
  • site.permalinks may define URL/output policy for posts, pages, categories, and tags
  • pages may carry optional path for nested page URLs
  • pages may carry optional updated_at_iso for page update metadata and sitemap lastmod
  • pages, categories, and tags do not carry internal id fields
  • site.media_base_url is required and must be either an empty string or an absolute URI
  • optional site.media_delivery_mode may be none or media_domain
  • optional site.favicon may carry icon, svg, png, and apple_touch_icon URLs for HTML head output
  • optional site.logo may carry theme-facing site identity data as { src, alt }
  • optional site.newsletter may carry theme-facing newsletter CTA/island data; ZeroPress does not implement provider submit behavior
  • optional site.expose_generator controls whether generated HTML exposes the ZeroPress generator meta tag
  • optional site.search controls whether native static search may be enabled when the active theme supports search
  • site locale is carried as site.locale
  • site timezone is carried as site.timezone
  • datetime display preference is carried as site.datetime_display
  • fallback datetime formatting uses site.date_style and site.time_style Intl style presets
  • comment rendering policy is carried as site.disallow_comments
  • fallback robots.txt indexing policy may be carried as optional site.indexing
  • enabled menus may be exported in optional root menus
  • menus is keyed by stable menu_id
  • menu items use title, url, type, target, optional scalar meta, 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 may be exported in optional 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.6
  • named page/post collections may be exported in optional root collections
  • collections is keyed by stable collection ids and contains ordered { type, slug } item references
  • managed media metadata may be exported in optional content.media[]
  • media registry items use src, positive integer width, positive integer height, and optional alt
  • optional custom_css carries site-level stylesheet input as { content }
  • optional custom_html carries trusted site-level HTML injection slots as { head_end: { content }, body_end: { 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