mcp-image-placeholder
Version:
MCP server for generating placeholder images using placehold.co and picsum.photos
93 lines (92 loc) • 2.46 kB
JSON
{
"name": "mcp-image-placeholder",
"version": "1.1.0",
"description": "MCP server for generating placeholder images using placehold.co and picsum.photos",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc && chmod +x dist/cli/index.js",
"build:clean": "rm -rf dist && npm run build",
"start": "node dist/cli/index.js",
"dev": "tsx src/cli/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci --watchAll=false",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests",
"type-check": "tsc --noEmit",
"quality": "npm run lint && npm run format:check && npm run type-check",
"prepublishOnly": "npm run quality && npm run test:ci && npm run build:clean",
"prepare": "husky install"
},
"bin": {
"mcp-image-placeholder": "dist/cli/index.js"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"mcp",
"model-context-protocol",
"placeholder",
"images",
"placehold",
"picsum",
"claude",
"ai"
],
"author": "Abul Khoyer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hellokhoyer/mcp-image-placer.git"
},
"bugs": {
"url": "https://github.com/hellokhoyer/mcp-image-placer/issues"
},
"homepage": "https://github.com/hellokhoyer/mcp-image-placer#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.0.0",
"husky": "^8.0.0",
"jest": "^29.6.0",
"lint-staged": "^16.1.6",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}