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

@crashcontinuum/crashcart-stamp

v1.0.1

Published

License stamping tool for CrashCart game bundles

Readme

@crashcontinuum/crashcart-stamp

License stamping tool for CrashCart game bundles.

Stamps your .crashcart files with a license from Crash BASIC Arcade, embedding your subscription tier and commercial use rights directly into the game.

Installation

# Use directly with npx (no install required)
npx @crashcontinuum/crashcart-stamp mygame.crashcart

# Or install globally
npm install -g @crashcontinuum/crashcart-stamp
crashcart-stamp mygame.crashcart

Usage

crashcart-stamp <crashcart-file> [options]

Options

| Option | Description | |--------|-------------| | -o, --output <file> | Output file path (default: <input>.stamped.crashcart) | | --arcade-url <url> | Arcade base URL (default: https://arcade.crashbasic.com) | | -h, --help | Show help message | | -v, --version | Show version number |

Examples

# Stamp a crashcart (creates mygame.stamped.crashcart)
npx @crashcontinuum/crashcart-stamp mygame.crashcart

# Stamp with custom output filename
npx @crashcontinuum/crashcart-stamp mygame.crashcart -o mygame-licensed.crashcart

# Use a local development server
npx @crashcontinuum/crashcart-stamp mygame.crashcart --arcade-url http://localhost:3000

How It Works

  1. Reads your CrashCart file and computes its SHA-256 checksum
  2. Opens your browser for authentication with Crash BASIC Arcade
  3. Fetches a signed license stamp from the Arcade API
  4. Creates a stamped copy of your CrashCart (original file unchanged)

The stamp is cryptographically signed and bound to your specific build via the checksum. Any modifications to the CrashCart will invalidate the stamp.

Note: The original file is never modified. A new .stamped.crashcart file is created.

License Tiers

| Tier | Commercial Use | Splash Screen | Subscription | |------|----------------|---------------|--------------| | Free | No | 3 seconds, required | Free | | Indie | Yes | 2 seconds, skippable | Premium ($4.99/mo) | | Studio | Yes | Removable | Multiplayer ($9.99/mo) |

Upgrade your license at: https://arcade.crashbasic.com/pricing

Stamped File Format

The stamp is appended to the end of the CrashCart file:

[Original CrashCart Data]
[CRSTAMP\0 magic - 8 bytes]
[Stamp length - 4 bytes uint32 LE]
[JSON stamp data]

The original CrashCart content is not modified, ensuring the stamp can be verified by computing:

checksum = SHA256(file[0:metadataOffset + metadataLength + 64])

Requirements

  • Node.js 18.0.0 or later
  • A Crash BASIC Arcade account (free or paid)

License

© 2026 Crash Continuum LLC. All rights reserved.