@lacspace/email-validate 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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -94,4 +94,20 @@ You can also read/extend the exported sets: `DISPOSABLE_DOMAINS`, `FREE_PROVIDER
94
94
  | **`@lacspace/email-validate`** | Validate & normalize addresses (this package) |
95
95
  | [`@lacspace/email-verify`](https://www.npmjs.com/package/@lacspace/email-verify) | MX + SMTP deliverability checks |
96
96
 
97
+ ## Licensing
98
+
99
+ 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.
100
+
101
+ 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)**.
102
+
103
+ ---
104
+
105
+ <div align="center">
106
+
107
+ **Part of the Lacspace ecosystem — 35 zero-dependency, isomorphic TypeScript packages.**
108
+
109
+ [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)
110
+
111
+ </div>
112
+
97
113
  <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-validate",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Smart email validation — syntax, disposable/temp-mail detection, role & free-provider flags, Gmail normalization and 'did you mean?' typo suggestions. Zero-dependency, isomorphic.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -35,7 +35,12 @@
35
35
  "did-you-mean",
36
36
  "normalize-email",
37
37
  "role-account",
38
- "typescript"
38
+ "typescript",
39
+ "email-check",
40
+ "free-email",
41
+ "validate-email",
42
+ "email-normalize",
43
+ "mx"
39
44
  ],
40
45
  "author": "Lacspace <contact@lacspace.com>",
41
46
  "license": "SEE LICENSE IN LICENSE",
@@ -50,5 +55,8 @@
50
55
  },
51
56
  "engines": {
52
57
  "node": ">=18"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public"
53
61
  }
54
62
  }