il2cppdump-mermaid
Version:
A small script to generate mermaid code from [Il2CppInspector](https://github.com/djkaty/Il2CppInspector) generated code that help you understand the relations
28 lines (27 loc) • 709 B
JSON
{
"name": "il2cppdump-mermaid",
"version": "0.2.0",
"main": "index.js",
"bin": "index.js",
"repository": "Houdou/il2cppdump-mermaid",
"keywords": [
"il2cpp",
"reverse-engineering",
"mermaid",
"diagram"
],
"license": "MIT",
"type": "module",
"scripts": {
"build": "yarn build-namespace",
"build-namespace": "pegjs -o namespace_relations.js namespace_relations.peg && node post-build namespace_relations",
"build-class": "pegjs -o class_relations.js class_relations.peg && node post-build class_relations"
},
"dependencies": {
"glob": "^7.2.0",
"scramjet": "^4.36.6"
},
"devDependencies": {
"pegjs": "^0.10.0"
}
}