gitextract_lexnr1a5/ ├── .gitignore ├── .mocharc.json ├── .npmignore ├── .prettierrc ├── .tool-versions ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example/ │ ├── .gitignore │ ├── .tool-versions │ ├── README.md │ ├── elm-tooling.json │ ├── elm.json │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── Main.elm │ │ └── index.js │ └── vite.config.js ├── package.json ├── src/ │ ├── CommonTypes.ts │ ├── JsonML.ts │ ├── elm-debug-parser.ts │ ├── elm-debug.pegjs │ ├── formatters/ │ │ ├── JsonMLFormatter.ts │ │ ├── SimpleFormatter.ts │ │ └── elements/ │ │ ├── BooleanElement.ts │ │ ├── BytesElement.ts │ │ ├── CustomTypeElement.ts │ │ ├── DebugElement.ts │ │ ├── DictElement.ts │ │ ├── Elements.ts │ │ ├── EllipsisElement.ts │ │ ├── FilesElement.ts │ │ ├── InternalsElement.ts │ │ ├── ListElement.ts │ │ ├── NumberElement.ts │ │ ├── RecordElement.ts │ │ ├── StringElement.ts │ │ ├── Styles.ts │ │ ├── TupleElement.ts │ │ └── TypeElement.ts │ ├── index.ts │ └── peg-file.d.ts ├── test/ │ ├── builders.ts │ ├── jsonml-formatter.spec.ts │ ├── jsonml.spec.ts │ ├── parser.spec.ts │ └── simple-formatter.spec.ts ├── tsconfig.json ├── tslint.json ├── vite.config.js └── vitest.config.js