-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
42
43
44
{
"name": "markdown-mcp",
"version": "1.0.0",
"description": "MCP server for browsing and searching Markdown documentation",
"type": "module",
"main": "dist/index.js",
"bin": {
"markdown-mcp": "dist/index.js"
},
"files": [
"dist",
"ReadMe.md"
],
"scripts": {
"build": "tsc",
"bundle": "tsc && esbuild dist/index.js --bundle --platform=node --format=esm --outfile=dist/bundle.js --banner:js=\"import { createRequire } from 'module'; const require = createRequire(import.meta.url);\"",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"markdown",
"documentation",
"model-context-protocol"
],
"author": "jgauffin",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"fast-glob": "^3.3.3",
"fast-xml-parser": "^5.5.9",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@types/micromatch": "^4.0.10",
"@types/node": "^25.0.9",
"esbuild": "^0.27.5",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}