gitextract_3nngibti/ ├── .claude/ │ └── settings.json ├── .github/ │ └── workflows/ │ ├── claude.yml │ └── npm-publish.yaml ├── .gitignore ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── scripts/ │ ├── build.js │ ├── deploy.js │ └── utilities/ │ └── bumpVersion.js ├── source/ │ ├── bin.ts │ ├── index.ts │ ├── plugins/ │ │ └── fileConstants.ts │ ├── runners/ │ │ ├── Runner.ts │ │ └── Watcher.ts │ ├── tools/ │ │ ├── findInputFile.ts │ │ ├── importRequire.ts │ │ ├── onExit.ts │ │ └── resolveDependency.ts │ └── types/ │ ├── CliOption.ts │ ├── Options.ts │ ├── Parameter.ts │ └── SendCodeMode.ts ├── test/ │ ├── index.ts │ ├── readline.js │ ├── readline.ts │ ├── resolvedAlias/ │ │ └── foo.ts │ ├── samples/ │ │ ├── Zabu.ts │ │ ├── backticksInComments.ts │ │ ├── coco.ts │ │ ├── dotImport/ │ │ │ ├── dotImport.ts │ │ │ ├── doubleDotImport/ │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── fileConstants.ts │ │ ├── ipc/ │ │ │ └── child.ts │ │ └── shebang.ts │ ├── server/ │ │ ├── index.ts │ │ └── message.ts │ └── tsconfig.json └── tsconfig.json