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

@remoteoss/remote-json-schema-form-kit

v0.0.11

Published

Remote's kit for json-schema-form

Readme

remote-json-schema-form-kit

Remote's wrapper around @remoteoss/json-schema-form (JSF) with added JSON logic operators.

This package exposes the two JSF versions v0 (legacy) and v1 (new).

Installation

npm install @remoteoss/remote-json-schema-form-kit

Usage

import { createHeadlessForm, modify } from '@remoteoss/remote-json-schema-form-kit';

How version routing works

This package exposes the two JSF versions we use:

When you call createHeadlessForm(schema, options) or modify(schema, options), the kit checks:

  1. schema["x-rmt-meta"].jsfVersion === "1" (schema-level marker set when consuming schemas via API)
  2. options.nextVersion === true (explicit caller override)

If either condition is true, the call is forwarded to the v1 implementation. Otherwise it falls back to the v0 implementation.

For v1, the kit also injects:

  • Custom JSON Logic operators via customJsonLogicOps
  • Legacy compatibility options (treatNullAsUndefined, allowForbiddenValues)

⚠️ In the next major version of this kit, the default JSF will be v1, unless callers opt out explicitly.

TypeScript types (v0 vs v1)

The kit already disambiguates some overlapping concepts. All types are v1 by default. Some types for v0 has a *Legacy suffix, for example ModifyConfigLegacy, FieldLegacy, etc.

CONTRIBUTING

This project was previously in Github, but it has moved to our internal private monorepo to improve the DX when updating JSF. We might consider doing a new mirror on Github for transparency. If you need it, let us know!

Adding a new custom JSON Logic operator

  1. Create a new file in src/json-logic-operators/ and write tests (follow the existing pattern, e.g. dateAddDays.ts)
  2. Export it from src/json-logic-operators/index.ts in the operators object
  3. The key in the operators object is the operator name used in JSON Schemas (e.g. date_add_days)

Deploy

Read README_internal.md for more info.