mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
8db355287c
* feat(core,connector-core): add connector core (#1803) * feat(core,connector-core): add connector core * fix: create connector function * refactor(connector): change connectors dependency from connector-types to connector-core (#1812) * refactor(connector,core): change the connectors dependency from connector-types to connector-core * refactor(core): do not need to test validator for specific connector implementation * refactor(connector): remove unnecessary code snippets * refactor(connector): keep UT placeholder for passwordless connectors Co-authored-by: wangsijie <wangsijie@silverhand.io> * fix(core): fix IT description and undestructure error (#1818) fix(connector): fix connector routes and IT typos * fix(connector): remove @logto/connector-types as it will not be used anymore (#1819) fix(connector): remove @logto/connector-types as it will not be used anymore * chore(connector): rename db in logto connector (#1821) chore(connector): rename LogtoConnector db to dbEntry Co-authored-by: Darcy Ye <darcyye@silverhand.io>
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "@logto/connector-smtp",
|
|
"version": "1.0.0-beta.5",
|
|
"description": "SMTP connector implementation.",
|
|
"main": "./lib/index.js",
|
|
"exports": "./lib/index.js",
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
"license": "MPL-2.0",
|
|
"private": true,
|
|
"files": [
|
|
"lib",
|
|
"docs",
|
|
"logo.svg",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"precommit": "lint-staged",
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
|
|
"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": "jest",
|
|
"test:coverage": "jest --coverage --silent",
|
|
"prepack": "pnpm build"
|
|
},
|
|
"dependencies": {
|
|
"@logto/connector-core": "^1.0.0-beta.5",
|
|
"@logto/shared": "^1.0.0-beta.5",
|
|
"@silverhand/essentials": "^1.2.0",
|
|
"@silverhand/jest-config": "1.0.0-rc.3",
|
|
"nodemailer": "^6.7.5",
|
|
"zod": "^3.14.3"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/types": "^28.1.3",
|
|
"@silverhand/eslint-config": "1.0.0-rc.2",
|
|
"@silverhand/ts-config": "1.0.0-rc.2",
|
|
"@types/jest": "^28.1.6",
|
|
"@types/node": "^16.3.1",
|
|
"@types/nodemailer": "^6.4.4",
|
|
"eslint": "^8.21.0",
|
|
"jest": "^28.1.3",
|
|
"lint-staged": "^13.0.0",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"engines": {
|
|
"node": "^16.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@silverhand"
|
|
},
|
|
"prettier": "@silverhand/eslint-config/.prettierrc"
|
|
}
|