@aiquants/html-to-markdown 1.2.0 → 1.2.1
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/dist/main.js +0 -0
- package/dist/mcp-streamable.js +0 -0
- package/dist/mcp.js +0 -0
- package/package.json +25 -27
package/dist/main.js
CHANGED
|
File without changes
|
package/dist/mcp-streamable.js
CHANGED
|
File without changes
|
package/dist/mcp.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiquants/html-to-markdown",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "HTML to Markdown converter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,30 +24,6 @@
|
|
|
24
24
|
"LICENSE",
|
|
25
25
|
"mcp.json"
|
|
26
26
|
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"postinstall": "playwright install --with-deps chromium",
|
|
29
|
-
"dev": "NODE_OPTIONS='--enable-source-maps' vite-node --inspect=9229 --watch src/mcp-streamable.ts --",
|
|
30
|
-
"watch": "vite build --watch",
|
|
31
|
-
"debug": "NODE_OPTIONS='--enable-source-maps' vite-node --inspect-brk=9229 main.ts --",
|
|
32
|
-
"start": "vite-node main.ts",
|
|
33
|
-
"build": "vite build",
|
|
34
|
-
"typecheck": "tsc --noEmit",
|
|
35
|
-
"clean": "rimraf dist",
|
|
36
|
-
"prepublishOnly": "npm run clean && npm run typecheck && npm run test --if-present && npm run build",
|
|
37
|
-
"publish:patch": "npm version patch && npm publish",
|
|
38
|
-
"publish:minor": "npm version minor && npm publish",
|
|
39
|
-
"publish:major": "npm version major && npm publish",
|
|
40
|
-
"lint": "biome lint app/",
|
|
41
|
-
"format": "biome format --write",
|
|
42
|
-
"check": "biome check --fix src/",
|
|
43
|
-
"test": "vitest run",
|
|
44
|
-
"test:mcp": "vitest run tests/mcp-unified.test.ts",
|
|
45
|
-
"test:watch": "vitest",
|
|
46
|
-
"coverage": "vitest run --coverage",
|
|
47
|
-
"coverage:mcp": "vitest run --coverage tests/mcp-unified.test.ts",
|
|
48
|
-
"license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
|
|
49
|
-
"license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json"
|
|
50
|
-
},
|
|
51
27
|
"keywords": [
|
|
52
28
|
"html",
|
|
53
29
|
"markdown",
|
|
@@ -82,7 +58,6 @@
|
|
|
82
58
|
"yargs-parser": "^22.0.0"
|
|
83
59
|
},
|
|
84
60
|
"devDependencies": {
|
|
85
|
-
"@biomejs/biome": "^2.3.8",
|
|
86
61
|
"@types/cors": "^2.8.19",
|
|
87
62
|
"@types/express": "^5.0.6",
|
|
88
63
|
"@types/hast": "^3.0.4",
|
|
@@ -102,5 +77,28 @@
|
|
|
102
77
|
},
|
|
103
78
|
"publishConfig": {
|
|
104
79
|
"access": "public"
|
|
80
|
+
},
|
|
81
|
+
"scripts": {
|
|
82
|
+
"postinstall": "playwright install --with-deps chromium",
|
|
83
|
+
"dev": "NODE_OPTIONS='--enable-source-maps' vite-node --inspect=9229 --watch src/mcp-streamable.ts --",
|
|
84
|
+
"watch": "vite build --watch",
|
|
85
|
+
"debug": "NODE_OPTIONS='--enable-source-maps' vite-node --inspect-brk=9229 main.ts --",
|
|
86
|
+
"start": "vite-node main.ts",
|
|
87
|
+
"build": "vite build",
|
|
88
|
+
"typecheck": "tsc --noEmit",
|
|
89
|
+
"clean": "rimraf dist",
|
|
90
|
+
"publish:patch": "npm version patch && pnpm publish --no-git-checks",
|
|
91
|
+
"publish:minor": "npm version minor && pnpm publish --no-git-checks",
|
|
92
|
+
"publish:major": "npm version major && pnpm publish --no-git-checks",
|
|
93
|
+
"lint": "biome lint app/",
|
|
94
|
+
"format": "biome format --write",
|
|
95
|
+
"check": "biome check --fix src/",
|
|
96
|
+
"test": "vitest run",
|
|
97
|
+
"test:mcp": "vitest run tests/mcp-unified.test.ts",
|
|
98
|
+
"test:watch": "vitest",
|
|
99
|
+
"coverage": "vitest run --coverage",
|
|
100
|
+
"coverage:mcp": "vitest run --coverage tests/mcp-unified.test.ts",
|
|
101
|
+
"license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
|
|
102
|
+
"license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json"
|
|
105
103
|
}
|
|
106
|
-
}
|
|
104
|
+
}
|