{
  "name": "mailpit-api",
  "version": "1.8.2",
  "description": "A TypeScript client for interacting with Mailpit's REST API.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mpspahr/mailpit-api.git"
  },
  "homepage": "https://mpspahr.github.io/mailpit-api/",
  "bugs": {
    "url": "https://github.com/mpspahr/mailpit-api/issues"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "provenance": true,
    "access": "public"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "scripts": {
    "test:unit": "jest tests/index.spec.ts",
    "test:e2e": "jest tests/index.e2e.spec.ts --runInBand",
    "test": "jest",
    "coverage": "jest --coverage",
    "build": "tsdown src/index.ts --dts --format esm,cjs --outDir dist",
    "pretty": "npx prettier . --write",
    "lint": "npx eslint --fix src tests",
    "docs": "typedoc"
  },
  "keywords": [
    "mailpit",
    "api",
    "client",
    "email",
    "smtp",
    "typescript",
    "test",
    "playwright",
    "e2e",
    "nodejs",
    "testing",
    "automation",
    "integration"
  ],
  "author": "Matthew Spahr",
  "license": "MIT",
  "dependencies": {
    "axios": "^1.15.0",
    "isomorphic-ws": "^5.0.0",
    "partysocket": "^1.1.10",
    "ws": "^8.18.3"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.4",
    "@jest/globals": "^30.3.0",
    "@types/node": "^24.12.2",
    "@types/ws": "^8.18.1",
    "dotenv": "^17.4.2",
    "eslint": "^9.39.4",
    "eslint-plugin-jest": "^29.15.2",
    "jest": "^30.3.0",
    "prettier": "^3.8.2",
    "ts-jest": "^29.4.9",
    "tsdown": "^0.21.8",
    "tsx": "^4.21.0",
    "typedoc": "^0.28.19",
    "typedoc-github-theme": "^0.4.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.58.2"
  }
}
