Directory structure:
└── chronicstone-array-ql/
├── README.md
├── build.config.ts
├── CONTRIBUTING.md
├── eslint.config.js
├── LICENSE
├── package.json
├── pnpm-workspace.yaml
├── tsconfig.json
├── .npmrc
├── docs/
│ ├── index.md
│ ├── api-reference/
│ │ ├── filter-match-mode.md
│ │ ├── query-filter.md
│ │ ├── query-function.md
│ │ └── query-params.md
│ ├── features/
│ │ ├── filtering.md
│ │ ├── pagination.md
│ │ ├── searching.md
│ │ ├── sorting.md
│ │ └── type-safety.md
│ ├── filter-match-modes/
│ │ ├── array-length.md
│ │ ├── between.md
│ │ ├── contains.md
│ │ ├── equals.md
│ │ ├── exists.md
│ │ ├── greater-than-or-equal.md
│ │ ├── greater-than.md
│ │ ├── less-than-or-equal.md
│ │ ├── less-than.md
│ │ ├── not-equals.md
│ │ ├── object-match.md
│ │ └── regex.md
│ ├── getting-started/
│ │ ├── installation.md
│ │ └── introduction.md
│ └── .vitepress/
│ ├── config.ts
│ └── theme/
│ ├── index.ts
│ └── style.css
├── src/
│ ├── index.ts
│ ├── query.ts
│ ├── types.ts
│ └── utils.ts
├── test/
│ ├── index.test.ts
│ └── fixtures/
│ ├── filtering.fixture.json
│ ├── pagination.fixture.json
│ ├── search.fixture.json
│ └── sorting.fixture.json
└── .github/
├── FUNDING.yml
└── workflows/
├── ci.yml
└── release.yml