-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "@documenso/nodemailer-resend",
"version": "4.0.0",
"description": "Transport for sending email via the Resend SDK",
"author": "Lucas Smith",
"license": "MIT",
"main": "dist/main.js",
"module": "dist/main.mjs",
"types": "dist/main.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/documenso/nodemailer-resend.git"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:coverage": "vitest --coverage",
"format": "prettier --write .",
"preversion": "npm run format && npm run test:coverage"
},
"dependencies": {
"resend": "^4.0.0"
},
"peerDependencies": {
"nodemailer": "^6.9.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.24",
"@types/nodemailer": "^6.4.14",
"@vitest/coverage-v8": "^1.3.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}