@lacspace/email-templates 1.0.2 → 1.0.4
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 +16 -0
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -102,4 +102,20 @@ await mail.send({ to, subject: "Your code", html: otpEmail({ code: "482913" }) }
|
|
|
102
102
|
| [`@lacspace/email-validate`](https://www.npmjs.com/package/@lacspace/email-validate) | Validate & normalize addresses |
|
|
103
103
|
| [`@lacspace/email-verify`](https://www.npmjs.com/package/@lacspace/email-verify) | MX + SMTP deliverability checks |
|
|
104
104
|
|
|
105
|
+
## Licensing
|
|
106
|
+
|
|
107
|
+
This package is **free** under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — MIT-equivalent freedoms. Use it in personal and commercial projects at no cost; just keep the notice.
|
|
108
|
+
|
|
109
|
+
Not every Lacspace package is free. We also offer **Commercial** (paid), **Client-specific**, and **Private** (proprietary) packages under separate terms. See the full **[Lacspace Licence Centre](https://lacspace.com/licenses)**.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
<div align="center">
|
|
114
|
+
|
|
115
|
+
**Part of the Lacspace ecosystem — 35 zero-dependency, isomorphic TypeScript packages.**
|
|
116
|
+
|
|
117
|
+
[All packages ↗](https://lacspace.com/packages) · [npm org ↗](https://www.npmjs.com/org/lacspace) · [Licence Centre ↗](https://lacspace.com/licenses) · [GitHub ↗](https://github.com/lacspace/npm-packages)
|
|
118
|
+
|
|
119
|
+
</div>
|
|
120
|
+
|
|
105
121
|
<div align="center"><sub>Built with care by <a href="https://lacspace.com">Lacspace</a> · Lacspace Free Licence · <a href="https://github.com/lacspace/npm-packages">source</a></sub></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lacspace/email-templates",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Compose bulletproof, responsive, dark-mode-aware HTML emails from simple blocks — buttons, OTP codes, invoices — with ready-made OTP/welcome/alert/invoice templates. Zero-dependency, isomorphic.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -35,7 +35,13 @@
|
|
|
35
35
|
"otp-email",
|
|
36
36
|
"invoice-email",
|
|
37
37
|
"mjml-alternative",
|
|
38
|
-
"typescript"
|
|
38
|
+
"typescript",
|
|
39
|
+
"email-html",
|
|
40
|
+
"dark-mode-email",
|
|
41
|
+
"email-components",
|
|
42
|
+
"password-reset-email",
|
|
43
|
+
"magic-link-email",
|
|
44
|
+
"react-email-alternative"
|
|
39
45
|
],
|
|
40
46
|
"author": "Lacspace <contact@lacspace.com>",
|
|
41
47
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -50,5 +56,8 @@
|
|
|
50
56
|
},
|
|
51
57
|
"engines": {
|
|
52
58
|
"node": ">=18"
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public"
|
|
53
62
|
}
|
|
54
63
|
}
|