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

@plasius/video

v0.1.11

Published

Standalone npm package for video generation components and helpers for the Plasius ecosystem

Readme

@plasius/video

npm version CI Status CD Status coverage License Code of Conduct Security Policy Changelog

Video generation components and helpers for the Plasius ecosystem.

Apache-2.0. ESM + CJS builds. TypeScript types included.

Install

npm install @plasius/video

Usage

import {
  AIVideoGenerationScreen,
  createAIVideoGenerationDemoModel,
  aiVideoGenerationTokens,
  aiVideoStageFlow,
  videoPackageInfo,
} from "@plasius/video";

console.log(videoPackageInfo.name, videoPackageInfo.version);
console.log(aiVideoGenerationTokens.color.background);
console.log(aiVideoStageFlow.map((stage) => stage.stage));

const model = createAIVideoGenerationDemoModel("imageSelection");
void AIVideoGenerationScreen;
void model;

Node.js Version

This project uses Node.js 24 by default. The version is pinned in the .nvmrc file.

If you use nvm, run:

nvm use

Package Scope

@plasius/video is intended to host reusable video generation interfaces and shared view-model logic used across Plasius applications.

AI Video Generation Visual Styling Pieces

This package now includes a design-system aligned screen scaffold for:

  • Prompt entry
  • Image generation and selection
  • Video generation and motion editing
  • Playback controls
  • Voiceover panel
  • Export state

Primary exports:

  • AIVideoGenerationScreen
  • AIVideoGenerationStudioDemo
  • createAIVideoGenerationDemoModel
  • aiVideoGenerationTokens
  • aiVideoStageFlow
  • AI_VIDEO_GENERATION_SCREEN_STYLES

Reference design document:

State Flow Summary

The staged flow aligns to the screen design sequence:

  1. idle
  2. generatingImages
  3. imageSelection
  4. generatingVideo
  5. playback
  6. voiceover
  7. export

Development

npm install
npm run lint
npm run typecheck
npm run build
npm run test:coverage
npm run demo:run

Quality Gates

  • CI enforces lint, typecheck, runtime dependency audit (npm audit --omit=dev --audit-level=high), build, and test coverage.
  • Coverage thresholds are enforced in Vitest (lines/functions/statements >= 80, branches >= 70).

Demo Sanity Check

npm run demo:run

Publishing

This package is published via GitHub CD only.

  1. Configure repository environment production with secret NPM_TOKEN.
  2. Run .github/workflows/cd.yml via Actions -> CD (Publish to npm) -> Run workflow.
  3. Select the version bump (patch, minor, major, or none) and optional pre-release id.

Contributing

We welcome contributions. See:

License

Licensed under the Apache-2.0 License.