package.json•979 B
{
"name": "@hun-dun/markdown-to-html-mcp",
"version": "1.0.1",
"main": "dist-cjs/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist-cjs/index.js"
}
},
"bin": {
"markdown-to-html-mcp": "dist-cjs/cli.js"
},
"files": [
"dist",
"dist-cjs"
],
"scripts": {
"build:esm": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"prepublishOnly": "npm run build",
"start": "ts-node src/cli.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/express": "^5.0.3",
"express": "^5.1.0",
"marked": "^11.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/marked": "^6.0.0",
"@types/node": "^20.11.30",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}