{
  "name": "@alsania-io/mcpnyx",
  "version": "1.0.5",
  "description": "MCPNyx - Advanced MCP proxy server for Nyx extension. Run multiple MCP stdio-based and SSE-based servers through a unified SSE/HTTP/WebSocket endpoint.",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "sse",
    "http",
    "websocket",
    "stream",
    "nyx",
    "alsania",
    "gateway",
    "proxy",
    "bridge"
  ],
  "author": "Alsania I/O <admin@alsania-io.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alsania-dev/mcpnyx.git"
  },
  "bugs": {
    "url": "https://github.com/alsania-dev/mcpnyx/issues"
  },
  "homepage": "https://alsania-io.com",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "mcpnyx": "dist/index.js",
    "nyxmcp": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "prepare": "husky",
    "clean": "rm -rf ./dist && rm -rf ./node_modules && rm -rf ./package-lock.json",
    "clean:install": "npm run clean && npm install",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "test": "echo \"No tests yet\" && exit 0",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts"
  },
  "dependencies": {
    "@genkit-ai/mcp": "^1.27.0",
    "@modelcontextprotocol/sdk": "^1.25.3",
    "body-parser": "^2.2.2",
    "cors": "^2.8.6",
    "express": "^5.2.1",
    "uuid": "^13.0.0",
    "ws": "^8.19.0",
    "yargs": "^18.0.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.6",
    "@types/node": "^25.0.10",
    "@types/uuid": "^10.0.0",
    "@types/ws": "^8.18.1",
    "@types/yargs": "^17.0.35",
    "@typescript-eslint/eslint-plugin": "^8.53.1",
    "@typescript-eslint/parser": "^8.53.1",
    "eslint": "^9.39.2",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "prettier": "^3.8.1",
    "ts-node": "^10.9.2",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "prettier --write",
      "eslint --fix"
    ]
  },
  "prettier": {
    "tabWidth": 2,
    "trailingComma": "all",
    "singleQuote": true,
    "printWidth": 120
  }
}
