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

screencraft

v0.1.1

Published

App launch kit generator — screenshots, PSDs, and preview video from one CLI command

Readme

ScreenCraft CLI

App Store launch kit from one terminal command.

npx screencraft launch

Generates App Store screenshots, layered PSDs, and a preview video — automatically branded from your codebase.


What it does

  1. Detects your framework (Expo, React Native, Flutter, Swift, Android)
  2. Reads brand colors + app name from your theme files — no config needed
  3. Captures screenshots from the iOS/Android simulator (or uses ./screenshots/ folder)
  4. Suggests App Store headline text via Claude AI — you approve each one
  5. Composites screenshots into device mockups with your headline text baked in
  6. Renders a 30s vertical preview video using your branded After Effects template
  7. Outputs a complete /launch-kit/ folder in your project root

Output

your-app/
  launch-kit/
    screenshots/
      screen_01.png     ← App Store-ready PNG, 1290×2796px
      screen_02.png
      screen_03.png
      screen_04.png
      screen_05.png
    video/
      preview.mp4       ← 30s vertical preview (watermarked until activated)
    source/
      app-launch.aep    ← Editable After Effects project
      screen_01.psd     ← Layered PSD (Pro tier)
      ...
    README.md           ← App Store submission checklist

Tiers

| | Free | Launch ($49) | Pro ($99) | |---|---|---|---| | App Store PNGs | ✓ | ✓ | ✓ | | Preview video (clean) | watermarked | ✓ | ✓ | | After Effects file | — | ✓ | ✓ | | Layered PSDs | — | — | ✓ | | Social cut (1:1) | — | — | ✓ | | App Store copy | — | — | ✓ |


Quick Start

Option A — Automated (with simulator)

Add routes to screencraft.config.js in your project root:

module.exports = {
  app: {
    name: "YourApp",
    tagline: "Your tagline here.",
    cta: "Download Free",
  },
  screenshots: [
    { route: "/home",     label: "Everything at a glance" },
    { route: "/features", label: "Built for how you work" },
    { route: "/profile",  label: "Your space, your way" },
    { route: "/onboard",  label: "Get started in seconds" },
    { route: "/settings", label: "Simple and powerful" },
  ],
};

Then run:

npx screencraft launch

Option B — Manual screenshots (fastest for testing)

  1. Take screenshots on your phone or simulator
  2. Place them in ./screenshots/ in your project root
  3. Run npx screencraft launch

The CLI will pick them up automatically.


Commands

npx screencraft launch                  # Full pipeline
npx screencraft launch --screenshots-only  # Free tier (no video)
npx screencraft activate MF-XXXX-XXXX  # Store license key
npx screencraft status                  # Check credits
npx screencraft init                    # Generate config file

Testing

# Test brand detection on your app project
node test/test_brand.js /path/to/your/app

# Test PSD compositor (add a screenshot first)
cp /path/to/screenshot.png test/sample_screenshot.png
node test/test_psd.js

Environment

ANTHROPIC_API_KEY=sk-ant-...     # For AI headline suggestions
SCREENCRAFT_API=https://...      # Override API endpoint
NODE_ENV=development             # Dev mode (accepts MF-* test keys)
SCREENCRAFT_DEV=1                # Also enables dev mode

Template Files (for motion designer)

Place these in templates/:

| File | Description | |------|-------------| | templates/device_frame.png | Transparent phone mockup overlay, 1130×1900px | | templates/screen_mask.png | White shape of screen area (for clipping) | | templates/app-launch.aep | After Effects template with swap layer naming |

See TEMPLATE_SPEC.md for the full AE build specification.


screencraft.dev