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

komomo-extra

v1.0.0

Published

Extra Library for the LeviLamina JavaScript mod with Komomo

Readme

Komomo-Extra

Extra Library for the LeviLamina JavaScript mod with Komomo

English | 简体中文

Introduction 🚀

This library provides extra features for the LeviLamina JavaScript mod with Komomo, such as:

  • Processing JSON configuration files conveniently
  • Easily translating text using a language dictionary(i18n)
  • ...

Usage 🛠️

Install as a mod 🎮

  • Install Komomo-Extra as a mod by lip:

    lip install github.com/TelluriumDev/Komomo-Extra
  • then import it in your mod:

    import * as KomomoExtra from "./KomomoExtra/index.js";

    also you can use

    import { ... } from "./KomomoExtra/index.js";

    to import specific functions.

don't forget to add KomomoExtra to your dependencies in your manifest.json to ensure it works properly:

{
// manifest.json
//...
   "dependencies": [
         {
            "name": "KomomoExtra"
      }
   ]
//...
}

Install as a npm package 📦

  • Join this repository as a npm by running the following command in the terminal in your project directory:

    npm i komomo-extra
  • then import it in your mod in a similar way:

    import * as KomomoExtra from "komomo-extra"

    also you can use

    import { ... } from "komomo-extra";

    to import specific functions.

Contact Us 📞

Build 🏗️

you can build the library by running the following command in the terminal in your project directory:

git clone https://github.com/TelluriumDev/Komomo-Extra.git
cd Komomo-Extra
npm i
git clone https://github.com/TelluriumDev/KomomoHelperLib.git
npx gulp build

if you want to build it as a plugin, run npx gulp plugin instead of npx gulp build.

Then, the build output of this repository will be exported to the /dist/KomomoExtra folder.

License 📜

This repository is released under the CC0-1.0 license.

PR or suggestions are welcome!🥵