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-smtp/package.json

72 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "@logto/connector-smtp",
2024-07-05 20:07:56 -05:00
"version": "1.1.3",
"description": "SMTP connector implementation.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"dependencies": {
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",
"nodemailer": "^6.9.9",
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"
},
"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/nodemailer": "^6.4.7",
"@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"
},
"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"
}
}