@aiquants/html-to-markdown 1.3.0 → 1.3.2
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.
- package/README.md +19 -19
- package/dist/index.d.ts +2 -0
- package/dist/mcp-streamable.d.ts +1 -0
- package/dist/mcp.d.ts +1 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -340,25 +340,25 @@ This tool follows these steps for conversion:
|
|
|
340
340
|
|
|
341
341
|
This project is built upon the following open-source software. We are grateful to the developers of these libraries.
|
|
342
342
|
|
|
343
|
-
| Package
|
|
344
|
-
|
|
|
345
|
-
| @modelcontextprotocol/sdk
|
|
346
|
-
| cors
|
|
347
|
-
| express
|
|
348
|
-
| github-slugger
|
|
349
|
-
| happy-dom
|
|
350
|
-
| hast
|
|
351
|
-
| hast-util-to-html
|
|
352
|
-
| playwright
|
|
353
|
-
| rehype-parse
|
|
354
|
-
| rehype-raw
|
|
355
|
-
| rehype-remark
|
|
356
|
-
| rehype-slug
|
|
357
|
-
| remark-gfm
|
|
358
|
-
| remark-stringify
|
|
359
|
-
| unified
|
|
360
|
-
| unist-util-visit
|
|
361
|
-
| yargs-parser
|
|
343
|
+
| Package | License |
|
|
344
|
+
| --- | --- |
|
|
345
|
+
| @modelcontextprotocol/sdk | MIT |
|
|
346
|
+
| cors | MIT |
|
|
347
|
+
| express | MIT |
|
|
348
|
+
| github-slugger | ISC |
|
|
349
|
+
| happy-dom | MIT |
|
|
350
|
+
| hast | MIT |
|
|
351
|
+
| hast-util-to-html | MIT |
|
|
352
|
+
| playwright | Apache-2.0 |
|
|
353
|
+
| rehype-parse | MIT |
|
|
354
|
+
| rehype-raw | MIT |
|
|
355
|
+
| rehype-remark | MIT |
|
|
356
|
+
| rehype-slug | MIT |
|
|
357
|
+
| remark-gfm | MIT |
|
|
358
|
+
| remark-stringify | MIT |
|
|
359
|
+
| unified | MIT |
|
|
360
|
+
| unist-util-visit | MIT |
|
|
361
|
+
| yargs-parser | ISC |
|
|
362
362
|
|
|
363
363
|
*This list is generated based on the `dependencies` in `package.json`. For the most accurate and up-to-date license information, please refer to the individual packages.*
|
|
364
364
|
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|
package/dist/mcp.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiquants/html-to-markdown",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "HTML to Markdown converter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
11
12
|
"import": "./dist/index.js",
|
|
12
13
|
"require": "./dist/index.cjs"
|
|
13
14
|
}
|
|
@@ -87,9 +88,9 @@
|
|
|
87
88
|
"build": "vite build",
|
|
88
89
|
"typecheck": "tsc --noEmit",
|
|
89
90
|
"clean": "rimraf dist",
|
|
90
|
-
"publish:patch": "
|
|
91
|
-
"publish:minor": "
|
|
92
|
-
"publish:major": "
|
|
91
|
+
"publish:patch": "pnpm run typecheck && pnpm run --if-present test && pnpm version patch --no-git-tag-version --no-git-checks && pnpm publish --no-git-checks",
|
|
92
|
+
"publish:minor": "pnpm run typecheck && pnpm run --if-present test && pnpm version minor --no-git-tag-version --no-git-checks && pnpm publish --no-git-checks",
|
|
93
|
+
"publish:major": "pnpm run typecheck && pnpm run --if-present test && pnpm version major --no-git-tag-version --no-git-checks && pnpm publish --no-git-checks",
|
|
93
94
|
"lint": "biome lint app/",
|
|
94
95
|
"format": "biome format --write",
|
|
95
96
|
"check": "biome check --fix src/",
|