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

@interactify-live/pindo-wizard

v0.8.46

Published

A React component library for creating interactive short-form videos with text overlays and media management.

Readme

@interactify-live/pindo-wizard

A React component library for creating interactive short-form videos with text overlays and media management.

Installation

npm install @interactify-live/pindo-wizard

Usage

import React from "react";
import { CaputureWizard } from "@interactify-live/pindo-wizard";

function App() {
  const handleFinish = (medias) => {
    console.log("Finished with medias:", medias);
  };

  const uploadFile = async (file, onProgress) => {
    // Implement your file upload logic here
    // Return the uploaded file URL
    return "https://example.com/uploaded-file.mp4";
  };

  return (
    <div style={{ height: "100vh" }}>
      <CaputureWizard onFinish={handleFinish} uploadFile={uploadFile} />
    </div>
  );
}

export default App;

TypeScript Support

This package includes TypeScript definitions out of the box. No additional installation needed.

import {
  MediaResult,
  FileType,
  Media,
  VideoType,
  ImageType,
} from "@interactify-live/pindo-wizard";

Available Components

  • CaputureWizard: Main component for the complete video creation workflow
  • Capture: Component for video/image capture and recording
  • ShortCreateInteractionsStep: Component for adding interactions to media

Requirements

  • React 18.2.0 or higher
  • React DOM 18.2.0 or higher

Browser Support

This library requires modern browsers with support for:

  • MediaDevices API
  • WebRTC
  • ES6+ features

Development with npm link

If you're using npm link for local development, you may encounter webpack compilation errors. To fix this, update your webpack configuration:

// In your webpack config
module: {
  rules: [
    {
      test: /\.[jt]sx?$/,
      exclude: [
        /node_modules/,
        // Specifically exclude the linked package
        /pindo/,
        /@interactify\/pindo-player/
      ],
      use: 'babel-loader'
    }
  ]
},

resolve: {
  extensions: ['.tsx', '.ts', '.js', '.jsx'],
  modules: ['node_modules'],
  alias: {
    '@interactify-live/pindo-wizard': require.resolve('@interactify-live/pindo-wizard')
  }
},

// Ignore declaration files
ignoreWarnings: [
  /Module parse failed: Unexpected token/,
  /Can't resolve/,
  /The keyword 'interface' is reserved/
]

Troubleshooting

Webpack Compilation Errors

If you encounter webpack compilation errors related to TypeScript declaration files, ensure your webpack configuration properly excludes node_modules and the linked package:

// In your webpack config
module: {
  rules: [
    {
      test: /\.[jt]sx?$/,
      exclude: /node_modules/, // This is crucial
      use: "babel-loader",
    },
  ];
}

Chunk Loading Errors

If you see "Loading chunk X failed" errors, this has been fixed in the latest version. Make sure you're using the latest version of the package.

TypeScript Declaration Issues

TypeScript definitions are included in the main package. If you encounter any issues, make sure you're using the latest version.

Package Structure

  • @interactify-live/pindo-wizard: Main component library with TypeScript definitions included

License

MIT