@leadertechie/md2html 0.1.0-alpha.6 → 0.1.0-alpha.7

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 +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,9 +14,11 @@ A configuration-driven markdown to HTML pipeline that parses markdown to an AST
14
14
  ## Installation
15
15
 
16
16
  ```bash
17
- npm install @leadertechie/md2html
17
+ npm install @leadertechie/md2html lit
18
18
  ```
19
19
 
20
+ > Note: `lit` is a peer dependency and required for rendering Lit templates.
21
+
20
22
  ## Usage
21
23
 
22
24
  ### Basic Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leadertechie/md2html",
3
- "version": "0.1.0-alpha.6",
3
+ "version": "0.1.0-alpha.7",
4
4
  "description": "Markdown to HTML pipeline - parse markdown to AST, render to HTML or Lit templates",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",