{
  "name": "@wraps.dev/email",
  "version": "0.12.2",
  "description": "Send email via AWS SES with TypeScript. Templates, batch sending, inbound email, attachments, React Email support, and event tracking. Your AWS account, no vendor lock-in.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./workers": {
      "types": "./dist/workers.d.ts",
      "import": "./dist/workers.mjs",
      "require": "./dist/workers.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "sideEffects": false,
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rm -rf dist coverage",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:integration": "INTEGRATION_TEST=true vitest run test/integration.test.ts",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "pnpm clean && pnpm build"
  },
  "dependencies": {
    "@aws-sdk/client-dynamodb": "^3.928.0",
    "@aws-sdk/client-s3": "^3.928.0",
    "@aws-sdk/client-ses": "^3.928.0",
    "@aws-sdk/client-sesv2": "^3.928.0",
    "@aws-sdk/client-ssm": "^3.928.0",
    "@aws-sdk/credential-providers": "^3.928.0",
    "@aws-sdk/lib-dynamodb": "^3.928.0",
    "@aws-sdk/s3-request-presigner": "^3.928.0",
    "aws4fetch": "^1.0.20",
    "zod": "^4.1.12"
  },
  "peerDependencies": {
    "@react-email/components": ">=0.0.25",
    "react": "^18.0.0 || ^19.0.0"
  },
  "peerDependenciesMeta": {
    "@react-email/components": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.5",
    "@types/node": "^24.10.0",
    "@types/react": "^19.2.3",
    "@vercel/oidc-aws-credentials-provider": "3.0.7",
    "@vitest/coverage-v8": "^4.0.8",
    "tsup": "^8.5.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.8"
  },
  "keywords": [
    "email",
    "send-email",
    "ses",
    "aws",
    "aws-ses",
    "react-email",
    "typescript",
    "transactional-email",
    "email-api",
    "email-sdk",
    "mailer",
    "smtp",
    "batch-email",
    "inbound-email",
    "email-templates",
    "node",
    "nodejs",
    "cloudflare-workers",
    "edge",
    "workerd",
    "wraps"
  ],
  "author": "Wraps",
  "license": "MIT",
  "homepage": "https://github.com/wraps-team/wraps-js/tree/main/packages/email#readme",
  "bugs": {
    "url": "https://github.com/wraps-team/wraps-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wraps-team/wraps-js.git",
    "directory": "packages/email"
  },
  "publishConfig": {
    "access": "public"
  }
}
