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

@estokad/schema

v0.1.6

Published

defineType(), defineEmbedded(), field types, JSON IR compiler.

Readme

@estokad/schema

defineType(), defineEmbedded(), all 16 field types from docs/schema-system.md § 3, and the JSON IR compiler.

Status

M1.1: package complete. 15 tests passing. Pure TypeScript, no I/O. The CLI (M1.2) wraps this with file loading; the API (M1.3) consumes the IR for content type registration and Zod-based validation.

Usage

import { defineType, defineEmbedded, compile } from '@estokad/schema'

const seo = defineEmbedded({
  name: 'seo',
  title: 'SEO',
  fields: [
    { name: 'title', type: 'text', max: 60 },
    { name: 'description', type: 'text', max: 160 },
    { name: 'ogImage', type: 'asset' },
  ],
})

const author = defineType({
  name: 'author',
  title: 'Author',
  fields: [
    { name: 'name', type: 'text', required: true },
    { name: 'role', type: 'text' },
  ],
})

const pressRelease = defineType({
  name: 'pressRelease',
  title: 'Press release',
  displayField: 'title',
  previewUrl: '/press/{slug}',
  fields: [
    { name: 'title', type: 'text', max: 140, required: true, localized: true },
    { name: 'slug', type: 'slug', source: 'title', required: true },
    { name: 'body', type: 'richText', required: true },
    { name: 'category', type: 'enum', options: ['announcement', 'results', 'leadership'] },
    { name: 'author', type: 'reference', to: 'author' },
    { name: 'publishedAt', type: 'datetime' },
    { name: 'seo', type: 'embedded', of: seo },
  ],
})

const ir = compile([author, pressRelease])
// ir is an array of TypeIR — one per top-level type plus any embedded types
// hoisted from { type: 'embedded', of: ... } references.

Pass a state map to preserve UUIDs across runs (rename detection):

import type { SchemaState } from '@estokad/schema'

const state: SchemaState = {
  types: {
    pressRelease: {
      id: '<uuid from previous compile>',
      fields: { title: '<uuid>', slug: '<uuid>' /* ... */ },
    },
  },
}

const ir = compile([pressRelease], { state })

The CLI persists this map to .estokad/schema-state.json; that lands in M1.2.

Field types

All 16 from docs/schema-system.md § 3:

| type value | Notes | | --------------- | ----------------------------------------------------------------- | | text | max, min, multiline, pattern (RegExp or string) | | richText | features whitelist | | number | min, max, integer | | boolean | — | | datetime | min, max (ISO 8601) | | date | min, max | | slug | source (must point at a text field on the same type), pattern | | asset | accept (MIME glob list), maxSize (bytes) | | assetList | asset options + min, max count | | reference | to (target type name), crossSpace | | referenceList | reference options + min, max count | | enum | options (non-empty unique strings) | | geoPoint | { lat, lng } | | embedded | of (an EmbeddedDefinition from defineEmbedded()) | | json | escape hatch; discouraged | | markdown | simpler than richText for migrated content |

Common options on every field: required, default, hint, localized, readOnly, condition, validate.

What this package does not do

  • File I/O (the CLI handles .estokad/schema-state.json and schemas/*.ts loading) — M1.2
  • Zod schema generation for runtime data validation — M1.3
  • GraphQL/REST handler registration — M2.x
  • The Studio's visual schema builder UI — M1.5

Documentation

Full reference at docs.estokad.com/schema and docs.estokad.com/schema/define-type.

License

Apache-2.0. Estokad is a Samarkand Industries OÜ product.