package.json•1.39 kB
{
"name": "image-converter-mcp-server",
"version": "1.0.0",
"description": "基于MCP协议的多格式图像转换服务器,支持JPG/PNG/WebP/GIF/BMP/TIFF/SVG/ICO/AVIF等格式互转",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "node test-simple.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"image",
"converter",
"format",
"sharp",
"jimp",
"webp",
"avif",
"png",
"jpg",
"gif",
"svg",
"ico",
"model-context-protocol"
],
"author": "CodeBuddy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pickstar-2025/image-converter-mcp.git"
},
"homepage": "https://github.com/pickstar-2025/image-converter-mcp#readme",
"bugs": {
"url": "https://github.com/pickstar-2025/image-converter-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"sharp": "^0.33.0",
"jimp": "^0.22.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0"
},
"bin": {
"image-converter-mcp-server": "./dist/index.js"
}
}