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

@fillament/mega

v0.2.0

Published

Everything Fillament in one install — all packages re-exported behind tree-shakable subpath entries, with Zod, Yup, the WebLLM engine, and the MCP bridge bundled as dependencies. Just add React.

Readme

@fillament/mega

Everything Fillament in one install. Batteries included.

@fillament/mega is the fat package: it bundles every Fillament module and their supporting libraries — Zod, Yup, AJV, the WebLLM engine, and the MCP bridge — as regular dependencies. One pnpm add @fillament/mega and the whole toolkit works, no manual peer wrangling. React is the only thing you bring (and npm 7+ / pnpm 8+ install it for you automatically as a peer).

pnpm add @fillament/mega

It stays lean anyway: every entry is a thin re-export and sideEffects: false, so your bundler tree-shakes everything you don't import. The node_modules folder is fat; your production bundle is not.

Usage

The root entry is the kitchen sink — core engine plus React bindings together:

import { z } from "zod";
import { useForm, Form, Field, createValidationAdapter } from "@fillament/mega";
import { zodAdapter } from "@fillament/mega/zod";
import { FillamentDevTools } from "@fillament/mega/devtools";
import { createStoragePersistPlugin } from "@fillament/mega/persist";

const form = useForm({
  schema: zodAdapter(z.object({ email: z.string().email() })),
  defaultValues: { email: "" },
  plugins: [createStoragePersistPlugin({ key: "signup" })],
});

Entry points

| Import | Re-exports | | --- | --- | | @fillament/mega | @fillament/core + @fillament/reactuseForm, Form, Field, FieldArray, FieldArrayTable, FieldsRenderer, createForm, adapter API | | @fillament/mega/react | @fillament/react (same as root, for symmetry) | | @fillament/mega/zod | @fillament/zod — zod is bundled | | @fillament/mega/yup | @fillament/yup — yup is bundled | | @fillament/mega/json-schema | @fillament/json-schema — AJV is bundled | | @fillament/mega/ai | @fillament/ai@mlc-ai/web-llm is bundled, loaded with dynamic import() | | @fillament/mega/webmcp | @fillament/webmcp | | @fillament/mega/webmcp/mcp-b | MCP-B bridge — @modelcontextprotocol/sdk + @mcp-b/transports are bundled | | @fillament/mega/blueprints | @fillament/blueprints — all catalogs | | @fillament/mega/blueprints/auth · /contact · /survey · /commerce · /onboarding | Individual blueprint catalogs | | @fillament/mega/test-data | @fillament/test-data | | @fillament/mega/test-data/devtools | One-click DevTools fill button | | @fillament/mega/persist | @fillament/persist | | @fillament/mega/remote | @fillament/remote | | @fillament/mega/redux | @fillament/redux — bring your own store | | @fillament/mega/i18n | @fillament/i18n | | @fillament/mega/analytics | @fillament/analytics | | @fillament/mega/devtools | @fillament/devtools | | @fillament/mega/formik-compat | @fillament/formik-compat — drop-in Formik |

Why React is a peer, not a dependency

Shipping a private copy of React inside a library is the classic way to end up with two React instances and broken hooks. So react / react-dom are declared as required peer dependencies instead — modern package managers (npm ≥ 7, pnpm ≥ 8) install them automatically, and your app keeps a single React.

How it stays tree-shakable

  • Thin re-exports — every entry is a one-line export * from the underlying package; mega adds no code of its own.
  • sideEffects: false ESM — bundlers drop every entry and symbol you don't import. Importing @fillament/mega/persist costs exactly what importing @fillament/persist costs.
  • Heavy deps load lazily — WebLLM and the MCP SDK are only touched via dynamic import() inside /ai and /webmcp/mcp-b, so they never enter your bundle unless those features run.
  • Same versions — mega pins the workspace versions of all 16 packages, so one install always gives you a coherent set.

Prefer per-package installs (@fillament/react, @fillament/zod, …) if you want minimal node_modules and explicit dependency bookkeeping — both styles are interchangeable, since mega re-exports the very same modules.

License

MIT — like every Fillament package, free with no feature gates.