@breadstone/archipel-platform-mailing 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +53 -22
package/package.json
CHANGED
|
@@ -1,10 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/archipel-platform-mailing",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Email delivery with strategy-based transport and template engines for NestJS applications.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"types": "./src/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
"*": {
|
|
10
|
+
"mailgun": [
|
|
11
|
+
"./src/mailgun/index.d.ts"
|
|
12
|
+
],
|
|
13
|
+
"postmark": [
|
|
14
|
+
"./src/postmark/index.d.ts"
|
|
15
|
+
],
|
|
16
|
+
"resend": [
|
|
17
|
+
"./src/resend/index.d.ts"
|
|
18
|
+
],
|
|
19
|
+
"sendgrid": [
|
|
20
|
+
"./src/sendgrid/index.d.ts"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./src/index.d.ts",
|
|
27
|
+
"default": "./src/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./mailgun": {
|
|
30
|
+
"types": "./src/mailgun/index.d.ts",
|
|
31
|
+
"default": "./src/mailgun/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./postmark": {
|
|
34
|
+
"types": "./src/postmark/index.d.ts",
|
|
35
|
+
"default": "./src/postmark/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./resend": {
|
|
38
|
+
"types": "./src/resend/index.d.ts",
|
|
39
|
+
"default": "./src/resend/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./sendgrid": {
|
|
42
|
+
"types": "./src/sendgrid/index.d.ts",
|
|
43
|
+
"default": "./src/sendgrid/index.js"
|
|
44
|
+
},
|
|
45
|
+
"./package.json": "./package.json",
|
|
46
|
+
"./postmark/index": "./src/postmark/index.js",
|
|
47
|
+
"./resend/index": "./src/resend/index.js",
|
|
48
|
+
"./sendgrid/index": "./src/sendgrid/index.js",
|
|
49
|
+
"./mailgun/index": "./src/mailgun/index.js"
|
|
50
|
+
},
|
|
8
51
|
"license": "MIT",
|
|
9
52
|
"repository": {
|
|
10
53
|
"type": "git",
|
|
@@ -32,20 +75,20 @@
|
|
|
32
75
|
"README.md"
|
|
33
76
|
],
|
|
34
77
|
"dependencies": {
|
|
35
|
-
"@breadstone/archipel-platform-blob-storage": "0.0.
|
|
36
|
-
"@breadstone/archipel-platform-core": "0.0.
|
|
37
|
-
"@nestjs/common": "11.1.19",
|
|
38
|
-
"@nestjs/terminus": "11.1.1",
|
|
78
|
+
"@breadstone/archipel-platform-blob-storage": "0.0.6",
|
|
79
|
+
"@breadstone/archipel-platform-core": "0.0.6",
|
|
39
80
|
"form-data": "4.0.5",
|
|
40
81
|
"nodemailer": "8.0.5",
|
|
41
|
-
"rxjs": "7.8.2",
|
|
42
82
|
"tslib": "2.8.1"
|
|
43
83
|
},
|
|
44
84
|
"peerDependencies": {
|
|
85
|
+
"@nestjs/common": ">=11.0.0",
|
|
86
|
+
"@nestjs/terminus": ">=11.0.0",
|
|
45
87
|
"@sendgrid/mail": ">=8.0.0",
|
|
46
88
|
"mailgun.js": ">=10.0.0",
|
|
47
89
|
"postmark": ">=4.0.0",
|
|
48
|
-
"resend": ">=4.0.0"
|
|
90
|
+
"resend": ">=4.0.0",
|
|
91
|
+
"rxjs": ">=7.0.0"
|
|
49
92
|
},
|
|
50
93
|
"peerDependenciesMeta": {
|
|
51
94
|
"@sendgrid/mail": {
|
|
@@ -62,26 +105,14 @@
|
|
|
62
105
|
}
|
|
63
106
|
},
|
|
64
107
|
"devDependencies": {
|
|
108
|
+
"@nestjs/common": "11.1.19",
|
|
109
|
+
"@nestjs/terminus": "11.1.1",
|
|
65
110
|
"@sendgrid/mail": "8.1.6",
|
|
66
111
|
"form-data": "4.0.5",
|
|
67
112
|
"mailgun.js": "13.0.0",
|
|
68
113
|
"postmark": "4.0.7",
|
|
69
114
|
"resend": "6.12.0",
|
|
115
|
+
"rxjs": "7.8.2",
|
|
70
116
|
"vitest": "4.1.4"
|
|
71
|
-
},
|
|
72
|
-
"exports": {
|
|
73
|
-
"./package.json": "./package.json",
|
|
74
|
-
".": {
|
|
75
|
-
"types": "./src/index.d.ts",
|
|
76
|
-
"default": "./src/index.js"
|
|
77
|
-
},
|
|
78
|
-
"./postmark": "./src/postmark/index.js",
|
|
79
|
-
"./postmark/index": "./src/postmark/index.js",
|
|
80
|
-
"./resend": "./src/resend/index.js",
|
|
81
|
-
"./resend/index": "./src/resend/index.js",
|
|
82
|
-
"./sendgrid": "./src/sendgrid/index.js",
|
|
83
|
-
"./sendgrid/index": "./src/sendgrid/index.js",
|
|
84
|
-
"./mailgun": "./src/mailgun/index.js",
|
|
85
|
-
"./mailgun/index": "./src/mailgun/index.js"
|
|
86
117
|
}
|
|
87
118
|
}
|