package.json•2.55 kB
{
"name": "reddit-mcp-server",
"version": "1.1.1",
"description": "A Model Context Protocol (MCP) that provides tools for fetching and creating Reddit content. Fork of the alexandros-lekkas/reddit-mcp-server.",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"reddit-mcp-server": "dist/bin.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"validate": "pnpm format && pnpm lint && pnpm test && pnpm build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint ./src --fix",
"lint:check": "eslint ./src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"build": "rimraf dist && cross-env NODE_ENV=production tsup",
"build:watch": "tsup --watch",
"build:prod": "SKIP_DTS=true tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm validate",
"ts-types": "tsc",
"inspect": "pnpm build && npx @modelcontextprotocol/inspector dist/index.js",
"start": "pnpm build && npx reddit-mcp-server",
"serve": "pnpm build && node dist/index.js",
"serve:dev": "tsx watch src/index.ts"
},
"keywords": [
"mcp",
"reddit",
"api",
"model-context-protocol"
],
"mcpName": "io.github.jordanburke.reddit-mcp-server",
"author": "Jordan Burke <jordan.burke@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jordanburke/reddit-mcp-server.git"
},
"bugs": {
"url": "https://github.com/jordanburke/reddit-mcp-server/issues"
},
"homepage": "https://github.com/jordanburke/reddit-mcp-server#readme",
"dependencies": {
"dotenv": "^16.6.1",
"fastmcp": "^3.19.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^22.18.9",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitest/coverage-v8": "^3.2.4",
"ajv-cli": "^5.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"msw": "^2.11.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
}