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

@mcbe-mods/create

v0.0.1-beta.8

Published

CLI tool for scaffolding and developing Minecraft Bedrock Edition addons

Downloads

307

Readme

@mcbe-mods/create

npm version npm downloads License

CLI tool for scaffolding and developing Minecraft Bedrock Edition addons.

Install

npm install -g @mcbe-mods/create

Usage

Create a new project

mcbe-create init my-addon

Interactive prompts guide you through:

  • Project type (packs + script API combined)
  • Script language (TypeScript or JavaScript)
  • Package manager (npm, pnpm, yarn)

Use --yes to skip all prompts and create with defaults:

mcbe-create init my-addon --yes

Use short flags to customize non-interactively:

mcbe-create init my-addon -a "Author" -d "My addon" -l js --no-scripts -k bp -y
mcbe-create init my-addon -v 1.20.0 -p pnpm --no-install

Run init inside an existing project to add missing packs.

Development

cd my-addon
mcbe-create dev            # Watch source files and rebuild
mcbe-create dev --sync     # Also sync changes to Minecraft dev packs
  • Mirrors pack files from src/ to dist/
  • Compiles TypeScript on change (when using TS)
  • --sync automatically copies dist/ to Minecraft development pack directories

Build & package

mcbe-create build

Produces a .mcaddon file in the pack/ directory.

Other commands

mcbe-create sync      # Manual one-shot sync dist/ to Minecraft
mcbe-create manifest  # Patch manifest.json from project config
mcbe-create info      # Show project information

Options

init

| Argument / Option | Type | Default | Description | |-------------------|------|---------|-------------| | [project-name] | string | — | Project name (prompted if omitted) | | -y, --yes | boolean | false | Skip all prompts, use defaults for unspecified fields | | -a, --author <author> | string | '' | Author name | | -d, --desc <desc> | string | '' | Project description | | -l, --lang <lang> | string | 'typescript' | Script language (typescript, javascript) | | -v, --mc-version <version> | string | '1.18.0' | @minecraft/server version | | -p, --pm <pm> | string | auto-detected | Package manager (npm, pnpm, yarn) | | -k, --packs <packs> | string | 'bp,rp' | Packs to include (bp, rp, comma-separated) | | --no-scripts | boolean | — | Disable Minecraft Script API | | --no-install | boolean | — | Skip dependency installation | | --add-bp | boolean | — | Add behavior pack to existing project | | --add-rp | boolean | — | Add resource pack to existing project |

dev

| Option | Description | |--------|-------------| | --sync | Also sync changes to Minecraft development pack directories |

License

MIT License © 2026-Present Lete114

Project structure

my-addon/
├── src/
│   ├── behavior_pack/          # Behavior Pack (user choice)
│   │   ├── manifest.json       # Editable by user
│   │   ├── scripts/main.ts     # Only with Script API (.ts or .js depending on language)
│   │   └── texts/
│   └── resource_pack/          # Resource Pack (user choice)
│       ├── manifest.json
│       └── texts/
├── dist/                       # Built output
│   ├── behavior_pack/
│   └── resource_pack/
├── pack/                       # .mcaddon output
├── package.json                # Contains "mcbe" field for configuration
└── tsconfig.json               # Only for TypeScript projects

Requirements

  • Node.js >= 20.19.0
  • Minecraft Bedrock Edition (Windows)