gitextract_xjlj126q/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ ├── pr.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierrc.json ├── .weztermocil/ │ └── watch.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bun.lockb ├── flake.nix ├── index.ts ├── integration/ │ ├── index.html │ └── integration.spec.ts ├── lib/ │ ├── __specs__/ │ │ ├── config.spec.ts │ │ ├── helpers.spec.ts │ │ └── main.spec.ts │ ├── config.ts │ ├── errors.ts │ ├── generator.ts │ ├── helpers.ts │ ├── index.ts │ └── types.ts ├── package.json ├── playwright.config.ts └── tsconfig.json