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

create-mcbe

v0.1.0-beta.1

Published

A small, extensible scaffolder for Minecraft Bedrock Edition projects.

Readme

create-mcbe

An extensible Minecraft Bedrock project scaffold generator for both interactive users and coding agents.

One-command setup for agents

Create an SAPI-Pro behavior-pack project, install its npm dependencies, install BePack locally, and resolve Script API dependencies:

npm create mcbe@latest my-addon -- --template sapi-pro --yes --install

Then build the project:

cd my-addon && npm run build

To use a globally installed BePack instead of installing it in the project:

npm create mcbe@latest my-addon -- --template sapi-pro --skip-bepack-install --yes

Then run:

cd my-addon && bepack install && npm run build

Use --json when an agent needs machine-readable output:

npm create mcbe@latest my-addon -- --template bepack-addon --yes --install --json

Templates

| Template | Description | | --- | --- | | sapi-pro | SAPI-Pro behavior pack with the built-in sapi-pro BePack plugin | | bepack-behavior | TypeScript behavior pack managed by BePack | | bepack-addon | TypeScript behavior pack and resource pack managed by BePack | | behavior-pack | Data-only behavior pack without scripts or build tools | | resource-pack | Data-only resource pack without scripts or build tools |

List available templates:

npm create mcbe@latest -- --list-templates

Common options

  • --template <id>: Select a template.
  • --yes: Use defaults and disable prompts; recommended for agents.
  • --install: Install project dependencies after creation. For BePack templates, also run the BePack install script.
  • If a template declares skills, --install also installs each source into the generated project with npx skills add.
  • --skip-skills-install: Do not install skills declared by the template. This only skips skills; npm and BePack installation still run when --install is used.
  • --install-bepack: Install BePack in the generated project.
  • --skip-bepack-install: Do not install BePack locally; use the global bepack command.
  • --pm <npm|pnpm|yarn|bun>: Select the package manager.
  • --git: Initialize a Git repository.
  • --json: Print machine-readable JSON output.
  • --cwd <path>: Set the directory where the project is created.
  • --force: Allow overwriting a non-empty target directory.

Interactive mode

Run without arguments to choose the project name, template, and BePack installation mode interactively:

npm create mcbe

Development

Run these commands from the BePack monorepo root:

npm run build:create-mcbe
npm run check:create-mcbe
npm run test:create-mcbe

To add a template, create a directory under templates/ and register its definition in src/templates/index.ts.

Template authors can opt into skills by adding a URL (or URLs) to the template definition:

skills: 'https://github.com/example/agent-skills'
// or: skills: ['https://github.com/example/skills-a', 'https://github.com/example/skills-b']