2024-08-09 19:30:49 +02:00
|
|
|
{
|
|
|
|
"//" : [
|
|
|
|
"not using type:module (for now) to ensure compatibility with old both browsers and Node",
|
|
|
|
"latest chalk version works only as a ES6 module, so we force the usage of the last CommonJS compatible version"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
|
|
|
"chalk": "4.1.2",
|
|
|
|
"commander": "^11.0.0"
|
|
|
|
},
|
|
|
|
"name": "rom-patcher",
|
2024-10-08 13:18:55 +02:00
|
|
|
"description": "A ROM patcher made in Javascript. Compatible with IPS, BPS, APS, UPS and more formats.",
|
2024-08-09 19:30:49 +02:00
|
|
|
"version": "3.0.0",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"test": "node test.js"
|
|
|
|
},
|
2024-10-08 13:18:55 +02:00
|
|
|
"bin": {
|
|
|
|
"RomPatcher": "./index.js"
|
|
|
|
},
|
2024-08-09 19:30:49 +02:00
|
|
|
"author": "Marc Robledo",
|
|
|
|
"license": "MIT"
|
|
|
|
}
|