@beignet/provider-mail-resend 0.0.48 → 0.0.49
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/CHANGELOG.md +7 -0
- package/README.md +5 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @beignet/provider-mail-resend
|
|
2
2
|
|
|
3
|
+
> **Runtime:** Beignet requires Node.js 22.12 or newer. Bun 1.3.14 or newer is
|
|
4
|
+
> supported for Beignet commands.
|
|
5
|
+
|
|
3
6
|
> [!CAUTION]
|
|
4
7
|
> Beignet is experimental alpha software. The `0.0.x` package line is for early
|
|
5
8
|
> evaluation, and APIs may change between releases while the framework settles.
|
|
@@ -19,8 +22,8 @@ internal.
|
|
|
19
22
|
bun add @beignet/provider-mail-resend @beignet/core resend
|
|
20
23
|
```
|
|
21
24
|
|
|
22
|
-
The provider supports `resend` `^2`, `^3`, `^4`, and `^6`.
|
|
23
|
-
|
|
25
|
+
The provider supports `resend` `^2`, `^3`, `^4`, and `^6`. Beignet's Node.js
|
|
26
|
+
22.12-or-newer runtime baseline also satisfies Resend v6's requirement.
|
|
24
27
|
|
|
25
28
|
## Setup
|
|
26
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beignet/provider-mail-resend",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.49",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Resend mail provider for Beignet - adds mailer port using Resend",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
|
-
"node": ">=
|
|
54
|
+
"node": ">=22.12.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@beignet/core": ">=0.0.3 <1.0.0",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@beignet/core": "*",
|
|
65
65
|
"@beignet/devtools": "*",
|
|
66
66
|
"@types/bun": "^1.3.13",
|
|
67
|
-
"@types/node": "^
|
|
67
|
+
"@types/node": "^22.0.0",
|
|
68
68
|
"resend": "^6.14.0",
|
|
69
69
|
"typescript": "^5.3.0"
|
|
70
70
|
},
|