├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── playground └── index.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── __tests__ │ ├── depth-search.test.ts │ └── index.test.ts ├── const │ └── index.ts ├── index.ts ├── types │ └── index.ts └── utils │ └── index.ts └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/package.json -------------------------------------------------------------------------------- /playground/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/playground/index.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/__tests__/depth-search.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/src/__tests__/depth-search.test.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/const/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/src/const/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismichaelps/quantummatcher/HEAD/tsconfig.json --------------------------------------------------------------------------------