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

@squaredr/fieldcraft-core

v1.0.1

Published

Headless TypeScript form engine with zero UI dependencies. Define multi-section forms via JSON schemas with validation, conditional visibility, and computed fields.

Readme

@squaredr/fieldcraft-core

Headless TypeScript form engine with zero UI dependencies. Define multi-section forms via JSON schemas with validation, conditional visibility, and computed fields.

Install

npm install @squaredr/fieldcraft-core

Quick Start

import { createEngine, type FormEngineSchema } from "@squaredr/fieldcraft-core";

const schema: FormEngineSchema = {
  id: "contact",
  version: "1.0.0",
  title: "Contact Form",
  submitAction: { type: "callback" },
  sections: [
    {
      id: "info",
      title: "Your Info",
      questions: [
        { id: "name", type: "short_text", label: "Name", required: true },
        { id: "email", type: "email", label: "Email", required: true },
        { id: "message", type: "long_text", label: "Message" },
      ],
    },
  ],
};

const engine = createEngine(schema);

// Set values
engine.setValue("name", "Alice");
engine.setValue("email", "[email protected]");

// Validate
const result = engine.validate();
console.log(result.valid); // true

// Get response
const response = engine.getResponse();

Features

  • Schema-driven — define forms with JSON/TypeScript schemas
  • 35+ field types — text, email, phone, date, file upload, rating, NPS, matrix, and more
  • Conditional logic — show/hide fields based on previous answers with AND/OR combinators
  • Multi-section flows — wizard-style forms with progress tracking
  • Validation — required fields, regex, min/max, custom validators, async validators
  • Computed fields — derive values automatically from other field responses
  • Draft persistence — save and resume in-progress forms
  • Type-safe — full TypeScript support with exported types for every config

Field Types

| Category | Types | |----------|-------| | Text | short_text, long_text, email, phone, phone_international, url, legal_name | | Numeric | number, slider, rating, nps, likert, opinion_scale | | Selection | single_select, multi_select, dropdown, boolean, country_select, ranking | | Date/Time | date, date_range, time, appointment | | Media | file_upload, signature, image_capture | | Advanced | address, payment, matrix, repeater, calculated, hidden, scoring | | Structural | consent, info_block |

API

createEngine(schema, options?)

Creates a form engine instance.

  • engine.setValue(questionId, value) — set a field value
  • engine.getValue(questionId) — get a field value
  • engine.validate() — validate all visible fields
  • engine.validateField(questionId) — validate a single field
  • engine.getResponse() — get the complete form response
  • engine.getState() — get current form state (values, errors, visibility)
  • engine.nextSection() / engine.prevSection() — navigate sections
  • engine.subscribe(listener) — subscribe to state changes

validateSchema(schema)

Validates a FormEngineSchema object and returns detailed errors.

Pair with React

npm install @squaredr/fieldcraft-react

The React package provides a ready-to-use FormEngineRenderer component with 35+ field components built on shadcn/ui and Tailwind CSS.

License

MIT