-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "mail-bridge",
"version": "1.0.2",
"description": "Send email using any email provider.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"start": "node build/index.js",
"dev": "tsnd --respawn src/index.ts",
"lint": "tsc",
"test": "tsnd --respawn test/index.ts",
"build": "tsup src/index.ts --format esm,cjs --dts",
"prepublishOnly": "pnpm build"
},
"keywords": [
"email",
"send-email",
"email-provider"
],
"author": "Tasnimul H. Tauhid",
"license": "MIT",
"homepage": "https://github.com/thtauhid/mail-bridge",
"repository": {
"type": "git",
"url": "git+https://github.com/thtauhid/mail-bridge.git"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.64",
"dotenv": "^16.4.5",
"ts-node-dev": "^2.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.529.1",
"form-data": "^4.0.0",
"mailgun.js": "^10.2.1",
"nodemailer": "^6.9.12",
"resend": "^3.2.0"
}
}