mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-09 10:11:12 +00:00
* feat: add Amazon SES plugin implementation * fix: rename kind for amazon ses API * fix: use better svg icon for amazon ses Co-authored-by: aloks98 <aloksahoo@acceldata.io>
25 lines
601 B
JSON
25 lines
601 B
JSON
{
|
|
"name": "@tooljet-plugins/amazonses",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"@aws-sdk/client-sesv2": "^3.186.0",
|
|
"react": "^17.0.2",
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
}
|