package.json•1.03 kB
{
"name": "social-media-mcp",
"version": "1.0.0",
"description": "MCP server for managing content across multiple social media platforms",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"start": "node build/index.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"mcp",
"social-media",
"twitter",
"mastodon",
"content-management"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"axios": "^1.8.1",
"dotenv": "^16.4.7",
"masto": "^6.10.3",
"twitter-api-v2": "^1.20.2",
"typescript": "^5.8.2",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.9",
"eslint": "^9.21.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2"
}
}