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

effect-json-schema

v0.1.0

Published

Tiny Effect Schema adapter for Standard JSON Schema V1.

Readme

effect-json-schema

Tiny Effect Schema adapter for Standard JSON Schema V1.

effect-json-schema keeps the runtime surface deliberately small: pass an Effect Schema, receive a Standard JSON Schema object with ~standard.version, ~standard.vendor, ~standard.types, and ~standard.jsonSchema.input/output.

Install

npm install effect-json-schema effect @standard-schema/spec

Usage

import * as S from "effect/Schema"
import { toStandardJsonSchema, type InferInput, type InferOutput } from "effect-json-schema"

const Person = S.Struct({ name: S.String })
const standard = toStandardJsonSchema(Person)

const jsonSchema = standard["~standard"].jsonSchema.input({
  target: "draft-2020-12"
})

type PersonInput = InferInput<typeof standard>
type PersonOutput = InferOutput<typeof standard>

Supported targets

The adapter supports every Standard JSON Schema V1 target required by the protocol:

  • draft-2020-12
  • draft-07
  • openapi-3.0

Unknown target strings throw TypeError so future targets cannot silently produce incorrect schemas.

Input and output schemas

Effect transforms can have different encoded input and decoded output types. The adapter preserves that distinction by using Schema.encodedSchema for jsonSchema.input() and Schema.typeSchema for jsonSchema.output().

const TextToNumber = S.transform(S.String, S.Number, {
  strict: true,
  decode: (value) => Number(value),
  encode: (value) => String(value)
})

const standard = toStandardJsonSchema(TextToNumber)
standard["~standard"].jsonSchema.input({ target: "draft-07" })  // { type: "string" }
standard["~standard"].jsonSchema.output({ target: "draft-07" }) // { type: "number" }

libraryOptions

libraryOptions are forwarded to Effect's JSON Schema generator. For example, this enables Effect's additionalPropertiesStrategy option:

standard["~standard"].jsonSchema.input({
  target: "draft-07",
  libraryOptions: { additionalPropertiesStrategy: "allow" }
})

Quality gates

This repository is intentionally small, but CI is not minimal. Every push and pull request runs:

  • TypeScript strict type-checking
  • Build and declaration emit
  • Vitest contract tests for the Standard JSON Schema protocol
  • LOC, construct length, nesting, and marker-text gates
  • Repository health checks for license, docs, templates, and workflows
  • npm pack consumer smoke tests for runtime and type imports
  • publint package checks

Run the full gate locally:

npm run ci

License

Apache-2.0. See LICENSE.