{
  "name": "i18next-mcp-server",
  "version": "1.0.8",
  "description": "A comprehensive Model Context Protocol (MCP) server for i18next translation management, health checking, and automated translation workflows",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "i18next-mcp-server": "dist/index.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    ".cursorrules.example"
  ],
  "scripts": {
    "build": "tsc && chmod +x dist/index.js",
    "build:watch": "tsc --watch",
    "dev": "tsc --watch",
    "dev:server": "concurrently \"npm run build:watch\" \"nodemon --watch dist dist/index.js\"",
    "start": "node dist/index.js",
    "start:dev": "npm run build && npm run start",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write src/**/*.ts",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "i18next",
    "translation",
    "internationalization",
    "i18n",
    "localization",
    "l10n",
    "json-rpc",
    "cursor",
    "ai-assistant",
    "model-context-protocol",
    "translation-management",
    "missing-keys",
    "automated-translation"
  ],
  "author": {
    "name": "Genar Trias",
    "email": "genar@gmail.com"
  },
  "license": "MIT",
  "homepage": "https://github.com/gtrias/i18next-mcp-server#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gtrias/i18next-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/gtrias/i18next-mcp-server/issues"
  },
  "dependencies": {
    "@babel/parser": "^7.27.5",
    "@babel/traverse": "^7.27.4",
    "@babel/types": "^7.27.6",
    "@modelcontextprotocol/sdk": "^0.5.0",
    "chokidar": "^3.5.3",
    "glob": "^10.4.5",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/babel__parser": "^7.1.1",
    "@types/babel__traverse": "^7.20.6",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "@vitest/coverage-v8": "^1.0.0",
    "concurrently": "^8.2.0",
    "eslint": "^8.0.0",
    "nodemon": "^3.0.0",
    "prettier": "^3.0.0",
    "typescript": "^5.0.0",
    "vitest": "^1.0.0"
  },
  "peerDependencies": {
    "i18next": ">=21.0.0",
    "i18next-scanner": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "i18next": {
      "optional": true
    },
    "i18next-scanner": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=8.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
