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

remotion-ui

v0.9.0

Published

Production-ready motion for Remotion. Source you own. Registry-first CLI — install components into your repo.

Readme

If RemotionUI saves you time, please ⭐ star the repo — it helps a lot!

remotion-ui

Production-ready motion for Remotion. Source you own.

CLI for adding Remotion video components to your project, not a runtime dependency.

Same registry workflow as shadcn/ui: npx add, JSON manifest, files in your repo.

Quick start

npx remotion-ui@latest init my-video
cd my-video
npx remotion-ui@latest add fade-in
npx remotion-ui@latest add intro

Components are installed into your project as source files. You own the code.

Commands

| Command | Description | |---------|-------------| | remotion-ui init [name] | Scaffold a new Remotion project | | remotion-ui init --existing | Bootstrap remotion-ui.json in an existing Remotion project | | remotion-ui add <name...> | Add component(s) from the registry | | remotion-ui doctor | Diagnose remotion-ui.json, aliases, and Remotion setup | | remotion-ui search -q <query> | Search the registry (filter with --lane, --tier) | | remotion-ui view <name> | View registry item metadata | | remotion-ui list | List registry components and installed status | | remotion-ui diff <name> | Diff installed vs registry | | remotion-ui update <name...> | Re-install from registry (overwrites files) | | remotion-ui build [registry.json] | Build a custom registry |

Every command accepts --json for machine-readable output. On failure it prints {"ok": false, "error": {"code", "message"}} and exits non-zero instead of a human-readable error message — codes include CONFIG_NOT_FOUND, CONFIG_INVALID, REGISTRY_ITEM_NOT_FOUND, REGISTRY_FETCH_FAILED, TEMPLATE_NOT_FOUND, TARGET_EXISTS, INVALID_ARGS, and DEPENDENCY_SPEC_INVALID.

Agent integration

  • remotion-ui init --agent-skill installs a bundled Claude Code skill to .claude/skills/remotionui-agent/SKILL.md in the target project (on by default with --existing; opt-in with --agent-skill on a fresh scaffold, opt-out with --no-agent-skill).
  • remotion-ui-mcp exposes the registry as MCP tools (list-components, search-components, get-component-detail, get-install-command) for MCP-capable agents.
  • Registry items carry a compat.remotion semver range; add/update warn (not block) when the installed remotion version in the target project's package.json doesn't satisfy it.
  • Flagship components carry a JSON Schema fragment per prop (PropDefinition.schema) alongside the human-readable type string, for agents that validate props before writing code.

Configuration

Create remotion-ui.json in your project root (included by init):

{
  "preset": "default",
  "aliases": {
    "primitives": "@/remotion/primitives",
    "scenes": "@/remotion/scenes",
    "compositions": "@/compositions",
    "lib": "@/remotion/lib",
    "hooks": "@/remotion/hooks"
  }
}

Programmatic API

import { fetchRegistryItem } from "remotion-ui/registry";
import { remotionUiConfigSchema } from "remotion-ui/schema";

Publishing (maintainers)

Run the full preflight before tagging or publishing:

pnpm prepare:publish

Then deploy remotionui.com so the hosted registry is live, tag v0.x.x, and publish:

pnpm publish:cli

Requires npm auth (NPM_TOKEN in .env or GitHub Actions npm-publish environment).