package.json•1.37 kB
{
"name": "@docx-mcp/docx-mcp",
"version": "0.5.0",
"description": "Model Context Protocol (MCP) server for DOCX document operations with comprehensive image support",
"private": false,
"type": "module",
"main": "dist/index.js",
"bin": {
"docx-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"docx",
"word",
"document",
"server",
"nodejs"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lihongjie0209/docx-mcp.git"
},
"bugs": {
"url": "https://github.com/lihongjie0209/docx-mcp/issues"
},
"homepage": "https://github.com/lihongjie0209/docx-mcp#readme",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"check": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.2.0",
"@types/highlight.js": "^10.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"docx": "^8.5.0",
"highlight.js": "^11.11.1",
"jszip": "^3.10.1",
"nanoid": "^5.1.5",
"sharp": "^0.34.3",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/xml2js": "^0.4.14",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}