-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "html-to-markdown-mcp",
"version": "1.0.2",
"description": "MCP server for converting HTML to Markdown using Turndown.js",
"type": "module",
"main": "index.js",
"bin": {
"html-to-markdown-mcp": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "node --test test/*.test.js",
"test:watch": "node --test --watch test/*.test.js",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"mcp",
"html",
"markdown",
"converter"
],
"author": "levz0r",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/levz0r/html-to-markdown-mcp.git"
},
"bugs": {
"url": "https://github.com/levz0r/html-to-markdown-mcp/issues"
},
"homepage": "https://github.com/levz0r/html-to-markdown-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1",
"turndown": "^7.2.1"
}
}