memecp
Version:
A simple Model Context Protocol (MCP) server
54 lines • 1.1 kB
JSON
{
"name": "memecp",
"version": "0.0.6",
"description": "A simple Model Context Protocol (MCP) server",
"main": "dist/index.js",
"bin": {
"memecp": "dist/index.js"
},
"type": "module",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"typescript",
"meme",
"generator"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TheHatSky/memecp.git"
},
"homepage": "https://github.com/TheHatSky/memecp#readme",
"bugs": {
"url": "https://github.com/TheHatSky/memecp/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.10.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsx watch src/index.ts",
"clean": "rm -rf dist"
}
}