0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/connectors/connector-aws-ses/package.json

72 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "@logto/connector-aws-ses",
2024-08-08 00:00:14 -05:00
"version": "1.2.0",
"description": "Logto Connector for Amazon SES",
"author": "Jeff <admin@breadth.app>",
"dependencies": {
2024-04-18 05:26:58 -05:00
"@aws-sdk/client-sesv2": "^3.556.0",
"@aws-sdk/types": "^3.535.0",
2024-07-05 20:07:56 -05:00
"@logto/connector-kit": "workspace:^4.0.0",
"@silverhand/essentials": "^2.9.1",
2024-04-16 20:06:33 -05:00
"got": "^14.0.0",
2024-07-12 07:53:42 -05:00
"snakecase-keys": "^8.0.1",
2024-07-12 07:56:01 -05:00
"zod": "^3.23.8"
},
"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",
2024-07-28 00:55:55 -05:00
"check": "tsc --noEmit",
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint --ext .ts src",
"lint:report": "pnpm lint --format json --output-file report.json",
"test": "vitest src",
"test:ci": "pnpm run test --silent --coverage",
"prepublishOnly": "pnpm build"
},
"engines": {
"node": "^20.9.0"
},
"eslintConfig": {
2023-04-01 09:16:56 -05:00
"extends": "@silverhand",
"settings": {
"import/core-modules": [
"@silverhand/essentials",
"got",
"nock",
"snakecase-keys",
"zod"
]
}
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"publishConfig": {
"access": "public"
2024-04-16 20:06:33 -05:00
},
"devDependencies": {
"@silverhand/eslint-config": "6.0.1",
"@silverhand/ts-config": "6.0.0",
2024-04-16 20:06:33 -05:00
"@types/node": "^20.11.20",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^8.56.0",
2024-04-16 20:06:33 -05:00
"lint-staged": "^15.0.2",
"nock": "^13.3.1",
"prettier": "^3.0.0",
"supertest": "^7.0.0",
"tsup": "^8.1.0",
2024-07-20 09:04:56 -05:00
"typescript": "^5.5.3",
"vitest": "^2.0.0"
}
}