package.json•1.34 kB
{
"name": "@flowy11/imagician",
"version": "0.1.1",
"description": "MCP server for comprehensive image editing operations - resize, convert, crop, compress and more",
"keywords": [
"mcp",
"model-context-protocol",
"image",
"image-processing",
"sharp",
"resize",
"convert",
"compress",
"claude"
],
"author": "Hongyi Wang <wanghy0113@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flowy11/imagician.git"
},
"bugs": {
"url": "https://github.com/flowy11/imagician/issues"
},
"homepage": "https://github.com/flowy11/imagician#readme",
"main": "dist/index.js",
"bin": {
"imagician": "dist/index.js",
"mcp-server-imagician": "dist/index.js"
},
"type": "module",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/*.js",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "node test/interactive.js",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"sharp": "^0.33.2"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}