{
  "name": "imo-publications-mcp-server",
  "version": "1.0.4",
  "description": "MCP server for IMO (International Maritime Organization) publications - Node.js TypeScript version",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "imo-publications-mcp-server": "bin/cli.js",
    "imo-publications-test": "npx-test.js"
  },
  "scripts": {
    "test": "npx @modelcontextprotocol/inspector node dist/index.js",
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "postinstall": "node install.js",
    "prepare": "chmod +x bin/cli.js npx-test.js && npm run build",
    "install-global": "npm install -g .",
    "postpublish": "echo 'Package published! Note: The npx test may not work immediately as the registry needs time to update.'",
    "test-npx": "cd /tmp && npx -y imo-publications-mcp-server@latest --help",
    "version-bump": "node scripts/version-bump.js"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "imo",
    "maritime",
    "publications",
    "regulations",
    "typescript"
  ],
  "author": "Your Name",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.12.3",
    "typesense": "^2.0.3",
    "mongodb": "^6.16.0",
    "cohere-ai": "^7.14.0",
    "openai": "^4.104.0",
    "axios": "^1.7.9",
    "dotenv": "^16.5.0",
    "typescript": "^5.7.2"
  },
  "devDependencies": {
    "@types/node": "^20.19.0",
    "tsx": "^4.19.4"
  },
  "files": [
    "bin/",
    "dist/",
    "README.md",
    "install.js",
    "npx-test.js"
  ],
  "engines": {
    "node": ">=18.0.0"
  }
} 