{
  "name": "@goldstack/template-email-send",
  "version": "0.4.97",
  "description": "Utilities for packages that implement email sending using AWS SES",
  "keywords": [
    "goldstack",
    "utility",
    "infrastructure",
    "IaC",
    "aws",
    "SES",
    "email",
    "configuration"
  ],
  "homepage": "https://goldstack.party",
  "bugs": {
    "url": "https://github.com/goldstack/goldstack/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/goldstack/goldstack.git"
  },
  "license": "MIT",
  "author": "Max Rohde",
  "sideEffects": false,
  "main": "dist/src/templateEmailSend.js",
  "scripts": {
    "build": "yarn clean && yarn compile",
    "build:watch": "yarn clean && yarn compile-watch",
    "clean": "rimraf ./dist",
    "compile": "tsc -p tsconfig.json",
    "compile-watch": "tsc -p tsconfig.json --watch",
    "compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
    "coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
    "generate-schema": "ts-node scripts/generateSchemas.ts EmailSend && cp schemas/* ../../../templates/packages/email-send/schemas",
    "prepublishOnly": "yarn run build",
    "publish": "yarn npm publish --tolerate-republish",
    "test": "GOLDSTACK_DEPLOYMENT=local jest --passWithNoTests --config=./jest.config.js --runInBand",
    "test-watch": "GOLDSTACK_DEPLOYMENT=local jest --watch --config=./jest.config.js --runInBand",
    "patch-when-changed": "git diff --quiet HEAD^...HEAD -- . && git diff --quiet -- . && git diff --quiet --staged -- .  || yarn version patch"
  },
  "dependencies": {
    "@aws-sdk/client-ses": "^3.1004.0",
    "@aws-sdk/credential-providers": "^3.1004.0",
    "@aws-sdk/types": "^3.973.5",
    "@goldstack/infra": "0.4.41",
    "@goldstack/infra-aws": "0.4.67",
    "@goldstack/utils-cli": "0.3.32",
    "@goldstack/utils-esbuild": "0.5.26",
    "@goldstack/utils-package": "0.4.43",
    "@goldstack/utils-package-config-embedded": "0.5.44",
    "@goldstack/utils-terraform": "0.4.87",
    "@goldstack/utils-terraform-aws": "0.4.92",
    "aws-sdk-client-mock": "^4.1.0",
    "uuid": "^11.0.5"
  },
  "devDependencies": {
    "@goldstack/utils-package-config-generate": "0.3.28",
    "@swc/core": "^1.15.8",
    "@swc/jest": "^0.2.39",
    "@types/jest": "^30.0.0",
    "@types/mock-aws-s3": "^2.6.3",
    "@types/node": "^25.0.3",
    "@types/uuid": "^10.0.0",
    "jest": "^30.2.0",
    "rimraf": "^6.1.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  },
  "publishConfig": {
    "main": "dist/src/templateEmailSend.js"
  }
}