package.json•2.23 kB
{
"name": "@boomlinkai/image-worker-mcp",
"version": "0.0.6",
"description": "MCP server for image worker - Resize, transform, etc...",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/BoomLinkAi/image-worker-mcp.git"
},
"bin": "bin/image-worker-mcp.mjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "vite build --config vite.config.ts",
"lint": "eslint",
"fixcode": "eslint --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepare": "husky",
"commit": "cz",
"release:prepare": "node scripts/prepare-release.js",
"release:publish": "node scripts/publish.js",
"version:patch": "node scripts/update-version.js patch",
"version:minor": "node scripts/update-version.js minor",
"version:major": "node scripts/update-version.js major"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@aws-sdk/client-s3": "^3.817.0",
"@google-cloud/storage": "^7.16.0",
"@modelcontextprotocol/sdk": "1.11.4",
"chalk": "5.3.0",
"commander": "12.0.0",
"libheif-js": "^1.18.2",
"node-fetch": "^3.3.2",
"sharp": "0.34.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.27.0",
"@rushstack/eslint-config": "3.7.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@tsconfig/node20": "^20.1.4",
"@types/node": "20.10.5",
"commitizen": "^4.3.1",
"conventional-changelog": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "9.25.1",
"husky": "^9.1.7",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"vite": "5.2.11",
"vite-plugin-external": "6.0.0",
"vitest": "^3.1.4"
},
"author": "Vuong Ngo @ https://boomlink.ai",
"email": "vuong@boomlink.ai",
"url": "http://boomlink.ai",
"keywords": [
"MCP",
"Sharp",
"Image Resize"
],
"license": "MIT"
}