{"library":"modpe-compiler","title":"ModPE Compiler","description":"A build tool that integrates linting (ESLint), transpilation (Babel), and minification (UglifyJS) for ModPE scripts used in the BlockLauncher Minecraft modding platform. Version 0.1.0 is the current stable release, likely with low release cadence. It differs from general transpilers by targeting the ModPE runtime environment specifically, providing a single-command pipeline for legacy ModPE JavaScript development.","language":"javascript","status":"active","last_verified":"Fri May 01","install":{"commands":["npm install modpe-compiler"],"cli":null},"imports":["const ModPECompiler = require('modpe-compiler');","let compiler = new ModPECompiler('your_script.js');","compiler.run();"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"const ModPECompiler = require('modpe-compiler');\nlet compiler = new ModPECompiler('./my_script.js');\ntry {\n  compiler.run();\n  compiler.saveAsFile();\n  console.log('Compiled successfully');\n} catch (err) {\n  console.error('Compilation failed:', err);\n}","lang":"javascript","description":"Shows how to instantiate ModPECompiler, run lint/transpile/minify pipeline, and save output.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}