{
  "name": "ee-mcp-server",
  "version": "0.1.52",
  "description": "Model Context Protocol server for Evolution Engineering",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "*.env.example"
  ],
  "bin": {
    "ee-mcp-server": "./dist/index.js"
  },
  "homepage": "https://evolutionengineering.ai",
  "repository": {
    "type": "git",
    "url": "https://github.com/EvolutionEngineering/ee-mcp-server"
  },
  "keywords": [
    "mcp",
    "modelcontextprotocol",
    "evolutionengineering",
    "ee",
    "falkordb",
    "graph",
    "database"
  ],
  "author": "Evolution Engineering",
  "license": "MIT",
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/jest": "^29.5.11",
    "@types/node": "^20.11.0",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "nodemon": "^3.0.2",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "tsup": "^8.4.0",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.10.1",
    "dotenv": "^16.4.7",
    "express": "^4.21.2",
    "falkordb": "^6.2.07",
    "zod": "^3.24.3"
  },
  "scripts": {
    "build": "tsc && tsup",
    "build:watch": "tsc --watch",
    "build:dev": "tsup --watch",
    "build:prod": "tsup --minify",
    "build:prod:watch": "tsup --minify --watch",
    "start": "node dist/index.js",
    "dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
    "lint": "eslint . --ext .ts",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "inspect:npm": "npx -y @modelcontextprotocol/inspector npx ee-mcp-server",
    "inspect:node": "npx -y @modelcontextprotocol/inspector node ./dist/index.js",
    "docker:build": "docker build -t falkordb-mcpserver .",
    "docker:run": "docker run -p 3000:3000 ee-mcpserver",
    "release": "pnpm run build && pnpm publish"
  }
}