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 🙏

© 2024 – Pkg Stats / Ryan Hefner

dicebox

v1.0.4

Published

build tool for typescript based RPG Maker MV plugins

Downloads

8

Readme

dicebox logo

dicebox

build tool for typescript based RPG Maker MV plugins

About

Dicebox is a tool that allows you to program RPG Maker MV plugins. By default, RMMV plugins are plain JS files that are simply loaded as is into your game. Using dicebox you can actually leverage all ES6 + Typescript goodness, with type declarations for the RMMV runtime library and easily manageable editor config.

Usage

Creating a New Project

Create an empty directory, and run the init command:

npx dicebox init

After asking you a small set of questions, a new plugin project will be created in the current working directory.

Structure of a Plugin Project

Once your project is created, it will contain the following files and directories:

  1. src - the directory with the source code for your plugin
  2. plugin.conf.ts - the config file for your plugin project
  3. rmmv.d.ts - type declarations for RMMV runtime library

You can start working on src/index.ts. This is the default entrypoint.

Building Your Project

In order to build your project, run npm run build. This will generate a single .js file in a new directory called dist.

Once this file is generated, you can put it in your game's JS/plugins directory, and then add and configure it using the RMMV editor interface.

Configuring How Your Plugin Looks In The Editor

One of the perks of RMMV plugins is the fact that you can integrate with the editor, so you can interact with it via the RMMV editor GUI. If you wish to define it, you can use the information in the plugin.conf.ts file:

Adding Plugin Parameters to the Editor

If you want to add parameters which you'll be able to set via the editor, head over to your plugin.conf.ts file. Under the parameters property, you can list all the parameters that will be interactive via the editor:

import { PluginConf } from 'dicebox/conf';

export const config: PluginConf = {
  name: 'My Plugin',
  author: 'Me',
  pluginFilename: 'MyPlugin',
  description: 'This is my Plugin',
  parameters: [
+    {
+      name: 'Some Parameter',
+      description: 'This is an example parameter. Try modifying this or adding new ones!',
+      default: 'Hello, World!'
+    }
  ]
};

Once saved, open the plugin manager in your RMMV editor, and you'll see the parameter right there for you to play with.

Attributions

RMMV RTL Type Definitions

The type definitions used for RMMV runtime library are taken from AsterAtwood's rmmv.d.ts project.