getmailer-node 1.0.0

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/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # @getmailer/node
2
+
3
+ This package is an alias for the main [`getmailer`](https://www.npmjs.com/package/getmailer) package.
4
+
5
+ ## Recommendation
6
+
7
+ For the best experience, we recommend installing `getmailer` directly:
8
+
9
+ ```bash
10
+ npm install getmailer
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ Both packages are functionally identical:
16
+
17
+ ```javascript
18
+ // Using @getmailer/node (this package)
19
+ import { GetMailer } from '@getmailer/node';
20
+
21
+ // Using getmailer (recommended)
22
+ import { GetMailer } from 'getmailer';
23
+ ```
24
+
25
+ ## Documentation
26
+
27
+ See the main package documentation at:
28
+ - [GetMailer Documentation](https://getmailer.co/docs)
29
+ - [npm: getmailer](https://www.npmjs.com/package/getmailer)
30
+ - [GitHub](https://github.com/getplatform/getmailer)
31
+
32
+ ## License
33
+
34
+ MIT
package/index.d.ts ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @getmailer/node - Alias package for getmailer
3
+ *
4
+ * This package is an alias for the main `getmailer` package.
5
+ * For the best experience, we recommend installing `getmailer` directly:
6
+ *
7
+ * npm install getmailer
8
+ *
9
+ * Both packages are functionally identical.
10
+ */
11
+
12
+ export * from 'getmailer';
13
+ export { default } from 'getmailer';
package/index.js ADDED
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @getmailer/node - Alias package for getmailer
3
+ *
4
+ * This package is an alias for the main `getmailer` package.
5
+ * For the best experience, we recommend installing `getmailer` directly:
6
+ *
7
+ * npm install getmailer
8
+ *
9
+ * Both packages are functionally identical.
10
+ */
11
+
12
+ module.exports = require('getmailer');
package/index.mjs ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @getmailer/node - Alias package for getmailer
3
+ *
4
+ * This package is an alias for the main `getmailer` package.
5
+ * For the best experience, we recommend installing `getmailer` directly:
6
+ *
7
+ * npm install getmailer
8
+ *
9
+ * Both packages are functionally identical.
10
+ */
11
+
12
+ export * from 'getmailer';
13
+ export { default } from 'getmailer';
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "getmailer-node",
3
+ "version": "1.0.0",
4
+ "description": "Alias for getmailer - Official Node.js SDK for GetMailer",
5
+ "main": "index.js",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "keywords": [
9
+ "email",
10
+ "getmailer",
11
+ "email-api",
12
+ "transactional-email",
13
+ "sdk",
14
+ "typescript",
15
+ "smtp",
16
+ "mail"
17
+ ],
18
+ "author": "GetMailer <support@getmailer.co>",
19
+ "license": "MIT",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/getplatform/getmailer.git",
23
+ "directory": "packages/node-alias"
24
+ },
25
+ "homepage": "https://getmailer.co",
26
+ "bugs": {
27
+ "url": "https://github.com/getplatform/getmailer/issues"
28
+ },
29
+ "dependencies": {
30
+ "getmailer": "^2.0.6"
31
+ },
32
+ "engines": {
33
+ "node": ">=18"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public"
37
+ }
38
+ }