-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 866 Bytes
/
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": "@fett/midwayjs-email",
"version": "0.0.2",
"description": "midwayjs email plugin",
"main": "dist/index.js",
"typings": "index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"index.d.ts"
],
"keywords": [
"midwayjs",
"email",
"mailer"
],
"license": "MIT",
"author": "ChrisSong1994 <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:ChrisSong1994/midwayjs-email.git"
},
"scripts": {
"build": "npm run clear && tsc",
"clear": "rimraf dist",
"prepublish": "npm run build",
"publish": "npm publish --access public"
},
"dependencies": {
"@midwayjs/core": "^3.19.0",
"nodemailer": "^6.9.16"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/nodemailer": "^6.4.17",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
}
}