@thi.ng/parse 2.4.52 → 2.4.54

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 (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +3 -1
  3. package/package.json +13 -11
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-08-29T12:31:25Z
3
+ - **Last updated**: 2024-09-19T21:09:34Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -73,6 +73,8 @@ grammars](https://makertube.net/w/ursFuQNJQQskmejx1ydL7q)
73
73
 
74
74
  ## Related packages
75
75
 
76
+ - [@thi.ng/hiccup-markdown](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-markdown) - Markdown parser & serializer from/to Hiccup format
77
+ - [@thi.ng/proctext](https://github.com/thi-ng/umbrella/tree/develop/packages/proctext) - Extensible procedural text generation engine with dynamic, mutable state, indirection, randomizable & recursive variable expansions
76
78
  - [@thi.ng/transducers-fsm](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers-fsm) - Transducer-based Finite State Machine transformer
77
79
 
78
80
  ## Installation
@@ -101,7 +103,7 @@ For Node.js REPL:
101
103
  const parse = await import("@thi.ng/parse");
102
104
  ```
103
105
 
104
- Package sizes (brotli'd, pre-treeshake): ESM: 5.21 KB
106
+ Package sizes (brotli'd, pre-treeshake): ESM: 5.27 KB
105
107
 
106
108
  ## Dependencies
107
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/parse",
3
- "version": "2.4.52",
3
+ "version": "2.4.54",
4
4
  "description": "Purely functional parser combinators & AST generation for generic inputs",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,17 +36,17 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.9",
40
- "@thi.ng/checks": "^3.6.11",
41
- "@thi.ng/defmulti": "^3.0.47",
42
- "@thi.ng/errors": "^2.5.15",
43
- "@thi.ng/strings": "^3.8.4"
39
+ "@thi.ng/api": "^8.11.10",
40
+ "@thi.ng/checks": "^3.6.12",
41
+ "@thi.ng/defmulti": "^3.0.48",
42
+ "@thi.ng/errors": "^2.5.16",
43
+ "@thi.ng/strings": "^3.8.5"
44
44
  },
45
45
  "devDependencies": {
46
- "@microsoft/api-extractor": "^7.47.5",
47
- "esbuild": "^0.23.0",
48
- "typedoc": "^0.26.5",
49
- "typescript": "^5.5.4"
46
+ "@microsoft/api-extractor": "^7.47.9",
47
+ "esbuild": "^0.23.1",
48
+ "typedoc": "^0.26.7",
49
+ "typescript": "^5.6.2"
50
50
  },
51
51
  "keywords": [
52
52
  "ast",
@@ -236,9 +236,11 @@
236
236
  },
237
237
  "thi.ng": {
238
238
  "related": [
239
+ "hiccup-markdown",
240
+ "proctext",
239
241
  "transducers-fsm"
240
242
  ],
241
243
  "year": 2020
242
244
  },
243
- "gitHead": "66e4c19b3054a6c35500a3e1acea1bf2563b14e8\n"
245
+ "gitHead": "b52baa3750ddd1256892df966ab7ac9b4806a9ef\n"
244
246
  }