mikromail 0.0.1 → 0.0.2

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 +7 -0
  2. package/README.md +4 -2
  3. package/package.json +6 -3
package/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2025-present Mikael Vesavuori
2
+
3
+ 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:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ 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.
package/README.md CHANGED
@@ -6,9 +6,11 @@
6
6
 
7
7
  ---
8
8
 
9
- - Tiny (~X.X KB gzipped)
9
+ - Supports international symbols
10
+ - Supports HTML emails
11
+ - Defaults to secure transmission
12
+ - Tiny (~4.4 KB gzipped), which is ~13x smaller than Nodemailer
10
13
  - Zero dependencies
11
- - High test coverage
12
14
 
13
15
  ## Usage
14
16
 
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "mikromail",
3
3
  "description": "Lightweight replacement for Nodemailer, supporting HTML, international symbols, and more.",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "author": "Mikael Vesavuori",
6
6
  "license": "MIT",
7
- "keywords": [],
7
+ "keywords": [
8
+ "email",
9
+ "node"
10
+ ],
8
11
  "main": "lib/index.js",
9
12
  "module": "lib/index.mjs",
10
13
  "repository": {
11
14
  "type": "git",
12
- "url": "git+https://github.com/mikaelvesavuori/mikromail"
15
+ "url": "git+https://github.com/mikaelvesavuori/mikromail.git"
13
16
  },
14
17
  "bugs": {
15
18
  "url": "https://github.com/mikaelvesavuori/mikromail/issues"