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

@extrai-lab/kinetica-remotion

v0.1.5

Published

A local-first collection of reusable Remotion components.

Readme

Kinetica Remotion

A collection of self-contained Remotion components by extrAI-lab. Users install one or more components via the CLI — files are fetched directly from this repo and composed sequentially into a ready-to-run Remotion video.

Local Development

pnpm install
pnpm dev

pnpm dev opens Remotion Studio at src/main.ts. All components are registered under the components folder with editable Zod-backed props.

Components

Components live in src/components/. Each component is a self-contained Remotion composition — no cross-component imports, all visual properties driven by Remotion props.

| Component | Description | |---|---| | world-map | Animated world map with configurable start/end geographic coordinates, arc path animation, and labeled markers | | bar-chart-race | Animated ranking bars with smooth transitions, automatic labels and colors, CSV/JSON source support, and podium emphasis |

CLI

Users install components with the kinetica-remotion-cli (or kinetica) CLI:

# List available components
npx kinetica-remotion-cli list

# Scaffold a project with one component
npx kinetica-remotion-cli init bar-chart-race --name my-video

# Scaffold a project with multiple components (sequenced in order)
npx kinetica-remotion-cli init world-map bar-chart-race --name my-video

See cli/README.md for full CLI details.

Adding a New Component

See CONTRIBUTING.md for the full acceptance criteria and file structure.

Short version:

  1. Copy src/components/_template/ to src/components/<your-component-slug>/.
  2. Rename all files and exports to match your component name.
  3. Every visual property must be a Zod-validated prop — no hardcoded colors, strings, or sizes.
  4. Export component, schema, defaults, and type from index.ts.
  5. Add an entry to src/components/manifest.json.
  6. Register for Studio: update src/kinetica-components.json and src/Root.tsx (see CONTRIBUTING.md).
  7. Run pnpm render:preview <component-slug> to generate preview.png.

Scripts

pnpm dev                               # Open Remotion Studio
pnpm build                             # Build the library (dist/)
pnpm typecheck                         # TypeScript check
pnpm render:preview <component-slug>   # Render first frame → src/components/<slug>/preview.png

Package Build

The public package entry is src/index.ts, built to dist/ with tsup. The jsrepo registry (jsrepo.config.ts) and the CLI manifest (src/components/manifest.json) are both kept in sync with the src/components/ structure.