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

@dollie_ai/editor

v0.1.0

Published

Framework-neutral contracts and React runtime for catalog-driven page builders

Readme

@dollie_ai/editor

Dollie Editor SDK — a unified SDK for building an AI-driven visual editor into your application. Embed it in your SaaS, wireframe with it internally, or use it to deliver visual editing to your customers.

One package, both halves. The editor surface: a guardrailed Base UI editor, renderer, blocks and illustrations, and the loop an AI copilot needs to ship valid pages on your own components (catalog → prompt, propose, validate, apply). The backend spine: JSON/TypeScript contracts, catalog sources, a manifest generator, transports and stores with revisions and conflict detection, and framework adapters. No telemetry, no Laravel, Inertia, or AI-vendor dependency in this package.

The fastest start is a starter kit: clone the TanStack Start starter (page-builder-demo, built on the Vercel AI SDK) for a working editor and copilot in minutes. Copilot integrations are named for two stacks at launch — the Laravel AI SDK (the Laravel adapter plus the Dollie agent stack, the flagship) and the Vercel AI SDK (the TanStack Start starter) — with bring-your-own-AI documentation for everything else in docs/ai-copilot.md. The package is coming to npm; today it is consumed as a path/workspace dependency.

Hosts own their components, content, storage, authorization, and branding. Register catalog sources with createCatalog, inject a PageBuilderEditorRuntime, and provide a TransportClient.

Import the SDK's Tailwind v4 contract immediately after Tailwind in the host stylesheet. It owns package source detection, Base UI state variants, animation utilities, and semantic token mappings; the host only supplies its shadcn color variables.

@import 'tailwindcss';
@import '@dollie_ai/editor/styles.css';

Run dollie-editor --config page-builder.config.mjs to generate a host manifest and React registry. See examples/standalone for the agentless path.

Wire-format promise

Stored PageConfig JSON is a public API. The current wire format is version 1 — a definition without _version IS version 1. Additive changes (new optional keys, new field kinds) never bump the version; breaking changes bump PAGE_CONFIG_VERSION and ship a migrator for migratePageConfig, so stored definitions upgrade stepwise on read. Content history is a separate axis: the document's revision token changes on every save and doubles as the conflict-detection token. See docs/persistence.md.

Documentation

The docs are for humans; the skills are for agents: SKILL.md carries the working rules for both packages, and docs/converting-existing-components.md doubles as the conversion skill's playbook.