@andrew_l/search-query-language 0.2.17 → 0.2.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # Search Query Language
2
2
 
3
- ![license](https://img.shields.io/npm/l/%40andrew_l%2Fsearch-query-language)
4
- ![npm version](https://img.shields.io/npm/v/%40andrew_l%2Fsearch-query-language)
5
- ![npm bundle size](https://img.shields.io/bundlephobia/minzip/%40andrew_l%2Fsearch-query-language)
3
+ [![npm version][npm-version-src]][npm-version-href]
4
+ ![license][license-src]
6
5
 
7
6
  Search Query Language is a lightweight utility that converts human-readable query strings into structured representations. It supports parsing expressions into an abstract syntax tree (AST) and transforming them into queries.
8
7
 
@@ -92,3 +91,9 @@ app.get('/clients', async (req, res) => {
92
91
  res.json(items);
93
92
  });
94
93
  ```
94
+
95
+ <!-- Badges -->
96
+
97
+ [npm-version-src]: https://img.shields.io/npm/v/@andrew_l/search-query-language?style=flat
98
+ [npm-version-href]: https://npmjs.com/package/@andrew_l/search-query-language
99
+ [license-src]: https://img.shields.io/npm/l/@andrew_l/search-query-language?style=flat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andrew_l/search-query-language",
3
- "version": "0.2.17",
3
+ "version": "0.2.19",
4
4
  "description": "Converts human-readable query strings into structured representations.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -38,7 +38,7 @@
38
38
  "mongoose": "^7 || ^8"
39
39
  },
40
40
  "dependencies": {
41
- "@andrew_l/toolkit": "0.2.17"
41
+ "@andrew_l/toolkit": "0.2.19"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "unbuild",