{
  "name": "amazon-seller-mcp",
  "version": "1.0.0",
  "description": "Model Context Protocol (MCP) client for Amazon Selling Partner API",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:coverage:watch": "vitest --coverage",
    "test:coverage:threshold": "vitest run --coverage --reporter=verbose && node scripts/coverage-threshold-check.js",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test:integration:watch": "vitest --config vitest.integration.config.ts",
    "test:unit": "vitest run --exclude tests/integration/**",
    "test:unit:watch": "vitest --exclude tests/integration/**",
    "test:ui": "vitest --ui",
    "test:maintenance": "node scripts/test-maintenance-simple.js",
    "test:health-check": "npm run test:maintenance health-check",
    "test:quick-check": "node scripts/quick-health-check.js",
    "test:pre-commit-check": "node scripts/pre-commit-health-check.js",
    "test:validation": "npm run test && npm run test:health-check",
    "test:cleanup": "bash scripts/cleanup-test-processes.sh",
    "ci:validate-env": "node scripts/validate-ci-environment.js",
    "setup:hooks": "bash scripts/setup-git-hooks.sh",
    "validate:hooks": "node scripts/validate-pre-commit-setup.js",
    "validate:ci": "node scripts/validate-ci-quality-gates.js",
    "quality:enforce": "node scripts/enforce-quality-gates.js",
    "pipeline:validate": "node scripts/validate-pipeline-end-to-end.js",
    "pipeline:validate:main": "node scripts/validate-pipeline-end-to-end.js --scenario main",
    "pipeline:validate:pr": "node scripts/validate-pipeline-end-to-end.js --scenario pr",
    "pipeline:validate:release": "node scripts/validate-pipeline-end-to-end.js --scenario release",
    "pipeline:monitor": "node scripts/pipeline-health-monitor.js",
    "pipeline:dashboard": "node scripts/pipeline-health-monitor.js --dashboard",
    "pipeline:alerts": "node scripts/pipeline-health-monitor.js --alerts",
    "pipeline:notify": "node scripts/pipeline-alert-notifier.js",
    "pipeline:notify:test": "node scripts/pipeline-alert-notifier.js --test",
    "lint": "eslint . --ext .ts",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "check:any-types": "node scripts/check-any-types.js",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && npm run test:validation",
    "docs": "node scripts/generate-docs.js",
    "build:docs": "npm run build && npm run docs"
  },
  "keywords": [
    "amazon",
    "selling-partner-api",
    "sp-api",
    "mcp",
    "model-context-protocol"
  ],
  "author": "Engin Terzi",
  "license": "AGPL-3.0-or-later",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/enginterzi/amazon-seller-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/enginterzi/amazon-seller-mcp/issues"
  },
  "homepage": "https://github.com/enginterzi/amazon-seller-mcp#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist/**/*"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.16.0",
    "amazon-sp-api": "^0.7.0",
    "axios": "^1.6.0",
    "dotenv": "^16.3.1",
    "node-cache": "^5.1.2",
    "winston": "^3.11.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/node": "^20.8.10",
    "@typescript-eslint/eslint-plugin": "^8.39.1",
    "@typescript-eslint/parser": "^8.39.1",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "eslint": "^8.52.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.1",
    "prettier": "^3.0.3",
    "typescript": "^5.2.2",
    "vitest": "^3.2.4"
  }
}
