{
  "name": "@rhofkens/mcp-quotes-server",
  "version": "0.1.3",
  "description": "A Model Context Protocol (MCP) server that provides quotes based on user requests",
  "main": "dist/index.js",
  "bin": {
    "mcp-quotes-server": "dist/start.js"
  },
  "type": "module",
  "scripts": {
    "start": "ts-node src/start.ts",
    "build": "tsc",
    "test": "jest",
    "lint": "eslint . --ext .ts",
    "format": "prettier --write .",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": [
    "mcp",
    "quotes",
    "model-context-protocol",
    "typescript",
    "serper",
    "api"
  ],
  "author": "Roeland Hofkens",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rhofkens/mcp-quotes-server.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.13.3",
    "axios": "^1.10.0",
    "axios-retry": "^4.5.0",
    "cors": "^2.8.5",
    "express": "^4.21.2",
    "winston": "^3.17.0",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@eslint/js": "^9.30.0",
    "@types/cors": "^2.8.17",
    "@types/express": "^4.17.23",
    "@types/jest": "^29.5.14",
    "@types/node": "^20.19.2",
    "@typescript-eslint/eslint-plugin": "^8.35.0",
    "@typescript-eslint/parser": "^8.35.0",
    "eslint": "^9.30.0",
    "globals": "^16.3.0",
    "jest": "^29.7.0",
    "prettier": "^3.0.0",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.0",
    "typescript": "^5.7.2"
  }
}
