package.json•2.05 kB
{
"name": "markdownlint-mcp",
"version": "1.0.0",
"description": "Model Context Protocol server for markdown linting and formatting",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch & node --watch dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write 'src/**/*.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"mcp",
"markdown",
"lint",
"markdownlint",
"formatting",
"validation",
"model-context-protocol",
"ai-tools",
"claude",
"openai",
"documentation"
],
"author": "Ernest G. Wilson II",
"license": "MIT",
"bin": {
"markdownlint-mcp": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ernestgwilsonii/markdownlint-mcp.git"
},
"homepage": "https://github.com/ernestgwilsonii/markdownlint-mcp#readme",
"bugs": {
"url": "https://github.com/ernestgwilsonii/markdownlint-mcp/issues"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"README.md",
"USAGE.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"markdownlint": "^0.34.0"
},
"devDependencies": {
"@jest/globals": "^30.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}