nuxt-mail 5.1.1 → 6.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.
Files changed (3) hide show
  1. package/LICENSE.md +14 -5
  2. package/README.md +2 -0
  3. package/package.json +18 -19
package/LICENSE.md CHANGED
@@ -14,8 +14,17 @@ MIT License
14
14
 
15
15
  Copyright (c) <year> <copyright holders>
16
16
 
17
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
18
-
19
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
18
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
19
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
20
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
21
+ following conditions:
22
+
23
+ The above copyright notice and this permission notice shall be included in all copies or substantial
24
+ portions of the Software.
25
+
26
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
27
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
28
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
29
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
30
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -55,6 +55,8 @@ Adds email sending capability to a Nuxt.js app. Adds a server route, an injected
55
55
 
56
56
  Does not work for static sites (via `nuxt generate`) because the module creates a server route.
57
57
 
58
+ ℹ️ **Info:** This module has been built in Nuxt 2 time where it was extra effort to build server routes. With Nuxt 3 it got much easier to do so, so this module is basically for simple contact forms. If you want to build more complex stuff, I recommend to use [nodemailer](https://www.npmjs.com/package/nodemailer) directly or [nuxt-nodemailer](https://www.npmjs.com/package/nuxt-nodemailer) instead.
59
+
58
60
  <!-- INSTALL/ -->
59
61
  ## Install
60
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-mail",
3
- "version": "5.1.1",
3
+ "version": "6.0.0",
4
4
  "description": "Adds email sending capability to a Nuxt.js app. Adds a server route, an injected variable, and uses nodemailer to send emails.",
5
5
  "keywords": [
6
6
  "email",
@@ -40,34 +40,33 @@
40
40
  "test": "base test"
41
41
  },
42
42
  "dependencies": {
43
- "@dword-design/functions": "^6.0.0",
44
- "@nuxt/kit": "^3.0.0",
45
- "express": "^4.17.1",
46
- "fs-extra": "^11.1.0",
47
- "h3": "^1.0.2",
48
- "nodemailer": "^6.4.11",
43
+ "@dword-design/functions": "^6.0.2",
44
+ "@nuxt/kit": "^3.16.2",
45
+ "express": "^4.21.2",
46
+ "fs-extra": "^11.3.0",
47
+ "h3": "^1.15.1",
48
+ "nodemailer": "^6.10.1",
49
49
  "nuxt-alias-path": "^2.0.0",
50
- "nuxt-push-plugins": "^2.1.2",
50
+ "nuxt-push-plugins": "^2.1.34",
51
51
  "parse-packagejson-name": "^1.0.1"
52
52
  },
53
53
  "devDependencies": {
54
- "@dword-design/base": "^11.0.4",
54
+ "@dword-design/base": "^11.2.10",
55
55
  "@dword-design/base-config-nuxt-module": "^1.0.0",
56
- "@dword-design/puppeteer": "^7.0.0",
57
- "@nuxtjs/axios": "^5.13.1",
58
- "axios": "^0",
59
- "depcheck-package-name": "^3.0.0",
56
+ "axios": "^0.30.0",
60
57
  "execa": "^8.0.1",
61
58
  "get-port": "^7.1.0",
62
- "nuxt": "^3.3.3",
59
+ "nuxt": "^3.16.2",
63
60
  "nuxt-dev-ready": "^3.0.0",
64
- "output-files": "^2.0.19",
61
+ "output-files": "^2.0.32",
62
+ "playwright": "^1.52.0",
63
+ "playwright-chromium": "^1.52.0",
65
64
  "port-ready": "^0.1.0",
66
- "smtp-tester": "^2.0.1",
67
- "tree-kill-promise": "^3.0.9",
68
- "with-local-tmp-dir": "^5.0.0"
65
+ "smtp-tester": "^2.1.0",
66
+ "tree-kill-promise": "^3.0.14",
67
+ "with-local-tmp-dir": "^5.1.1"
69
68
  },
70
- "packageManager": "pnpm@9.11.0+sha256.1c0e33f70e5df9eede84a357bdfa0b1f9dba6e58194628d48a1055756f553754",
69
+ "packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677",
71
70
  "engines": {
72
71
  "node": ">=18"
73
72
  },