package.json•800 B
{
"name": "x-com-mcp-server",
"version": "1.0.0",
"description": "MCP server implementation for X.com API with OAuth 2.0 support",
"main": "dist/index.js",
"bin": {
"x.com-mcp-server": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "jest",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"uuid": "^9.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"prettier": "^3.5.2",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}