package.json•2.06 kB
{
"name": "mcp-server-giphy",
"version": "1.0.3",
"description": "An implementation of Giphy integration with Model Context Protocol",
"author": "Martin Garcia Monterde <hola@magarcia.io>",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-server-giphy": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magarcia/mcp-server-giphy.git"
},
"bugs": {
"url": "https://github.com/magarcia/mcp-server-giphy/issues"
},
"homepage": "https://github.com/magarcia/mcp-server-giphy#readme",
"keywords": [
"mcp",
"giphy",
"model-context-protocol"
],
"targets": {
"main": {
"context": "node",
"includeNodeModules": false,
"outputFormat": "esmodule",
"isLibrary": true,
"optimize": true,
"engines": {
"node": ">=16.0.0"
},
"source": "src/index.ts",
"distDir": "dist"
}
},
"scripts": {
"clean": "rm -rf build dist",
"prebuild": "npm run clean",
"build": "tsc && npm run bundle",
"postbuild": "chmod +x dist/index.js",
"bundle": "parcel build --target main --no-cache",
"start": "node dist/index.js",
"dev": "ts-node --files src/index.ts",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"preinspector": "npm run build",
"inspector": "npx @modelcontextprotocol/inspector npm run start",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"axios": "^1.8.4",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"@types/jest": "^29.5.0",
"@types/node": "^16.18.126",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.57.1",
"globals": "^16.0.0",
"jest": "^29.5.0",
"parcel": "^2.12.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^0.0.1-alpha.0"
}
}