{
  "name": "@goldstack/template-email-send",
  "version": "0.4.54",
  "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": "utils-git changed --exec \"yarn npm publish $@\"",
    "test": "GOLDSTACK_DEPLOYMENT=local jest --passWithNoTests --config=./jest.config.js --runInBand",
    "test-watch": "GOLDSTACK_DEPLOYMENT=local jest --watch --config=./jest.config.js --runInBand",
    "version:apply": "utils-git changed --exec \"yarn version $@ && yarn version apply\"",
    "version:apply:force": "yarn version $@ && yarn version apply"
  },
  "dependencies": {
    "@aws-sdk/client-ses": "^3.645.0",
    "@aws-sdk/credential-providers": "3.645.0",
    "@aws-sdk/types": "^3.609.0",
    "@goldstack/infra": "0.4.22",
    "@goldstack/infra-aws": "0.4.34",
    "@goldstack/utils-cli": "0.3.16",
    "@goldstack/utils-esbuild": "0.5.12",
    "@goldstack/utils-package": "0.4.22",
    "@goldstack/utils-package-config-embedded": "0.5.23",
    "@goldstack/utils-terraform": "0.4.45",
    "@goldstack/utils-terraform-aws": "0.4.48",
    "aws-sdk-client-mock": "^4.0.1",
    "uuid": "^11.0.5"
  },
  "devDependencies": {
    "@goldstack/utils-git": "0.2.12",
    "@goldstack/utils-package-config-generate": "0.3.13",
    "@swc/core": "^1.10.1",
    "@swc/jest": "^0.2.37",
    "@types/jest": "^29.5.14",
    "@types/mock-aws-s3": "^2.6.3",
    "@types/node": "^22.10.2",
    "@types/uuid": "^10.0.0",
    "jest": "^29.7.0",
    "rimraf": "^3.0.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.2"
  },
  "publishConfig": {
    "main": "dist/src/templateEmailSend.js"
  }
}