package.json•1.2 kB
{
"name": "ppt-mcp",
"version": "2.0.0",
"description": "Pure Node.js MCP server for creating and managing PowerPoint presentations with AI assistance",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc --watch",
"sse": "npx supergateway --stdio \"node build/index.js\" --port 3100",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"powerpoint",
"presentation",
"ppt",
"claude",
"ai",
"typescript",
"nodejs",
"pptxgenjs",
"pure-javascript"
],
"author": {
"name": "Xingyu Chen",
"email": "guangxiangdebizi@gmail.com",
"url": "https://github.com/guangxiangdebizi"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/guangxiangdebizi/ppt-mcp.git"
},
"homepage": "https://github.com/guangxiangdebizi/ppt-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"pptxgenjs": "^3.12.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"files": [
"build/**/*",
"python/**/*",
"README.md",
"LICENSE"
]
}