package.json•2.55 kB
{
"name": "systemprompt-mcp-reddit",
"version": "2.0.0",
"description": "A specialized Model Context Protocol (MCP) server that enables you to search, read, and interact with Reddit content, leveraging an AI Agent to help with each operation.",
"type": "module",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"module": "./src/smithery-entry.ts",
"bin": {
"systemprompt-mcp-reddit": "build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && tsc-alias && chmod +x build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "node build/index.js",
"dev": "tsx watch src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ejb503/systemprompt-mcp-reddit.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node-fetch": "^2.6.12",
"ajv": "^8.17.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jose": "^6.0.11",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@types/dotenv": "^8.2.3",
"@types/jest": "^30.0.0",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.15.32",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"cross-env": "^7.0.3",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"jest": "^30.0.2",
"prettier": "^3.5.3",
"ts-jest": "^29.4.0",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-json-schema": "^0.65.1"
},
"keywords": [
"systemprompt",
"mcp",
"model-context-protocol",
"reddit",
"social-media",
"oauth"
],
"author": "Ejb503",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Ejb503/systemprompt-mcp-reddit/issues"
},
"homepage": "https://systemprompt.io",
"engines": {
"node": ">=18.0.0"
}
}