2023-04-01 07:53:44 -05:00
|
|
|
{
|
|
|
|
"name": "@logto/connector-aws-ses",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Logto Connector for Amazon SES",
|
|
|
|
"author": "Jeff <admin@breadth.app>",
|
|
|
|
"dependencies": {
|
2023-04-17 05:10:14 -05:00
|
|
|
"@logto/connector-kit": "workspace:^1.1.0",
|
2023-04-01 07:53:44 -05:00
|
|
|
"@aws-sdk/client-sesv2": "^3.224.0",
|
|
|
|
"@aws-sdk/types": "^3.226.0"
|
|
|
|
},
|
|
|
|
"main": "./lib/index.js",
|
|
|
|
"module": "./lib/index.js",
|
|
|
|
"exports": "./lib/index.js",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"type": "module",
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"docs",
|
|
|
|
"logo.svg",
|
|
|
|
"logo-dark.svg"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"precommit": "lint-staged",
|
|
|
|
"build:test": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
|
|
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.build.json --noEmit && rollup -c",
|
|
|
|
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
|
|
|
|
"lint": "eslint --ext .ts src",
|
|
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
|
|
|
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
|
|
"test": "pnpm build:test && pnpm test:only",
|
|
|
|
"test:ci": "pnpm test:only --silent --coverage",
|
|
|
|
"prepublishOnly": "pnpm build"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": "^18.12.0"
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
2023-04-01 09:16:56 -05:00
|
|
|
"extends": "@silverhand",
|
|
|
|
"settings": {
|
|
|
|
"import/core-modules": [
|
|
|
|
"@silverhand/essentials",
|
|
|
|
"got",
|
|
|
|
"nock",
|
|
|
|
"snakecase-keys",
|
|
|
|
"zod"
|
|
|
|
]
|
|
|
|
}
|
2023-04-01 07:53:44 -05:00
|
|
|
},
|
|
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
}
|
|
|
|
}
|