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

@digitalpine/inkwell

v0.1.5

Published

Visual exploration canvas for React codebases. Claude drops .tsx frames into the filesystem and watches them render on an infinite React Flow canvas.

Readme

@digitalpine/inkwell

Visual exploration canvas for React codebases. Claude drops .tsx frames into the filesystem and watches them render on an infinite React Flow canvas.

Inkwell is a live sketchbook where the filesystem is the API. Drop a .tsx file into frames/<board>/ and it appears on the canvas. Delete it and it disappears. The human watches the sketchbook fill up frame by frame while Claude explores designs.

Install

pnpm add @digitalpine/inkwell

The canvas is designed to be installed by the Inkwell Claude Code plugin, which walks you through onboarding (canvas location, framework, Tailwind wiring, proof frame) and scaffolds everything. You can also wire it up manually — see Manual Wiring below.

What you get

  • Infinite canvas — React Flow renderer with drag, zoom, pan, auto-layout
  • Filesystem-as-API — frames are .tsx files, canvas state is .canvas.json, layout is .layout.json
  • Auto-discovery — frames in frames/**/*.tsx appear automatically
  • Live protocol — dropping a new frame file shows it within a second, error-isolated
  • Annotations — click any element on a frame, leave a comment, Claude picks it up via MCP channel
  • Vite plugin — the canvas is a dev server plugin. No build step for your frames.

Package exports

import { Canvas } from "@digitalpine/inkwell/Canvas";
import { useFrameModules } from "@digitalpine/inkwell/hooks";
import { canvasPlugin } from "@digitalpine/inkwell/plugins";
import { canvasMcpPlugin } from "@digitalpine/inkwell/mcp-plugin";
import "@digitalpine/inkwell/inkwell.css";

Full export list:

| Entry | Purpose | |---|---| | @digitalpine/inkwell/Canvas | Core canvas component | | @digitalpine/inkwell/FrameWrapper | Frame wrapper with error boundary + entrance animation | | @digitalpine/inkwell/Annotations | Annotation overlay component | | @digitalpine/inkwell/hooks | State + layout hooks, pure layout functions | | @digitalpine/inkwell/plugins | Vite dev server plugin (state, layout, capture, file watching) | | @digitalpine/inkwell/mcp-plugin | Vite plugin serving MCP over Streamable HTTP for annotation push | | @digitalpine/inkwell/annotation-utils | Annotation helpers + types | | @digitalpine/inkwell/components/* | Chrome pieces (sidebar, toolbar, top-bar, primitives, sheets) | | @digitalpine/inkwell/inkwell.css | Pre-built chrome stylesheet — no Tailwind needed |

Manual wiring

Minimal Vite setup:

// vite.config.ts
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { canvasPlugin } from "@digitalpine/inkwell/plugins";
import { canvasMcpPlugin } from "@digitalpine/inkwell/mcp-plugin";

export default defineConfig({
  plugins: [react(), canvasPlugin(), canvasMcpPlugin()],
  server: { port: 5173, host: "127.0.0.1" },
});
// src/App.tsx
import { Canvas, type BoardMeta } from "@digitalpine/inkwell/Canvas";
import { useFrameModules, type FrameModule, type LazyFrameModules } from "@digitalpine/inkwell/hooks";

const lazyFrameModules = import.meta.glob<FrameModule>("../frames/**/*.tsx") as unknown as LazyFrameModules;
const boardMetaModules = import.meta.glob<{ default: BoardMeta }>("../frames/*/.board.json", { eager: true });

export function App() {
  const frameModules = useFrameModules(lazyFrameModules);
  return (
    <div style={{ height: "100vh", display: "flex", flexDirection: "column" }}>
      <Canvas frameModules={frameModules} boardMetaModules={boardMetaModules} />
    </div>
  );
}
/* src/main.css */
@import "@digitalpine/inkwell/inkwell.css";

Create frames/01-explore/hello.tsx:

export const meta = { title: "hello", preset: "component" };
export default function Frame() {
  return <div style={{ padding: 24 }}>hello from inkwell</div>;
}

Run pnpm dev, open the printed URL, and watch frames appear as you add them.

Peer dependencies

| Package | Version | |---|---| | react | ^19 | | react-dom | ^19 | | @xyflow/react | ^12 | | @modelcontextprotocol/sdk | ^1.27 | | vite | ^5 \|\| ^6 \|\| ^7 \|\| ^8 | | vaul | ^1.1 |

Links

License

MIT © Joel Brubaker