package.json•1.9 kB
{
"name": "mcp-image-extractor",
"version": "1.1.0",
"description": "MCP server for extracting and converting images to base64 for LLM analysis",
"main": "dist/index.js",
"bin": {
"mcp-image-extractor": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"test": "jest --no-cache --passWithNoTests",
"test:ci": "jest --ci",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"image",
"base64",
"llm",
"smithery"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"sharp": "^0.33.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@deploya/smithery-cli": "^0.0.1",
"@smithery/cli": "^1.1.46",
"@types/axios": "^0.14.4",
"@types/dotenv": "^8.2.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.0",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"smithery": {
"name": "mcp-image-extractor",
"description": "MCP server for extracting and converting images to base64 for LLM analysis",
"version": "1.1.0",
"author": "",
"license": "MIT"
},
"repository": {
"type": "git",
"url": "https://github.com/ifmelate/mcp-image-extractor"
},
"homepage": "https://github.com/ifmelate/mcp-image-extractor#readme",
"bugs": {
"url": "https://github.com/ifmelate/mcp-image-extractor/issues"
},
"engines": {
"node": ">=16.0.0"
}
}