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

@famtree/schema

v0.1.5

Published

JSON Schema and TypeScript types for genogram documents.

Readme

@famtree/schema

npm license

The source-of-truth data contract for famtree genogram documents: a JSON Schema (Draft 2020-12) plus the matching TypeScript types. Zero runtime dependencies.

A genogram is a family diagram capturing individuals, their biological/legal relationships (unions, parent-child), and their emotional relationships.

Install

npm install @famtree/schema

What's inside

  • TypeScript types describing a genogram document.
  • schema — the JSON Schema object (importable).
  • @famtree/schema/famtree.schema.json — the raw schema file, for tooling that wants the JSON directly (editors, validators, codegen).

Usage

TypeScript types

import type { Genogram, Person, Relationship } from "@famtree/schema"

const doc: Genogram = {
  version: "1.0.0",
  people: [
    { id: "a", name: "Ada", sex: "female", birthDate: "1815-12-10" },
  ],
  relationships: [],
}

Exported types include: Genogram, Person, Sex, Condition, NodeStyle, Relationship, UnionRelationship, ParentChildRelationship, EmotionalRelationship, EmotionalBond, and Layout.

The schema object

import { schema } from "@famtree/schema"
// Pass to any JSON Schema validator (see @famtree/validate for a ready-made one).

The raw JSON file

import schema from "@famtree/schema/famtree.schema.json" with { type: "json" }

Or reference it directly from the repo for editor tooling: https://github.com/felipeplets/famtree/blob/main/libs/schema/famtree.schema.json

Document shape (overview)

A document has a version, optional metadata, an array of people, an array of relationships, and an optional layout hint block. Relationships are a discriminated union on type:

  • union — a partnership between two people (marriage, cohabitation, …) with an unionType and status (current/separated/divorced/…).
  • parent-child — links a childId to parents or a parental unionId, with a biological kind (biological/adopted/foster/step/surrogate) and optional pregnancyOutcome.
  • emotional — a bond between two people (close, distant, conflict, cutoff, …) with an optional direction.

People carry attributes such as sex (shape), deceased/deathDate, isProband, twins (twinGroupId/twinType), conditions, and style.

See the full schema for the authoritative, field-by-field definition.

Related packages

| Package | Description | |---------|-------------| | @famtree/cli | famtree command-line renderer | | @famtree/renderer | SVG renderer | | @famtree/validate | Optional Ajv-backed schema validation | | @famtree/core | Domain graph + layout engine |

License

MIT © Felipe Plets