├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src ├── clone.ts ├── index.ts ├── ingestion.ts ├── main.ts ├── output-formatter.ts ├── query-parser.ts ├── types.ts └── utils │ ├── constants.ts │ ├── display.ts │ ├── ignore-helper.ts │ └── pattern-matcher.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/package.json -------------------------------------------------------------------------------- /src/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/clone.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/ingestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/ingestion.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/output-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/output-formatter.ts -------------------------------------------------------------------------------- /src/query-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/query-parser.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/utils/display.ts -------------------------------------------------------------------------------- /src/utils/ignore-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/utils/ignore-helper.ts -------------------------------------------------------------------------------- /src/utils/pattern-matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/src/utils/pattern-matcher.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanHassanKerdash/codetxt/HEAD/tsconfig.json --------------------------------------------------------------------------------