@visulima/email-verifier 1.0.0 → 1.0.1
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/CHANGELOG.md +16 -11
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,29 +1,34 @@
|
|
|
1
|
+
## @visulima/email-verifier [1.0.1](https://github.com/visulima/visulima/compare/%40visulima%2Femail-verifier%401.0.0...%40visulima%2Femail-verifier%401.0.1) (2026-07-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/disposable-email-domains:** upgraded to 1.0.1
|
|
7
|
+
|
|
1
8
|
## @visulima/email-verifier 1.0.0 (2026-07-03)
|
|
2
9
|
|
|
3
10
|
### Features
|
|
4
11
|
|
|
5
|
-
|
|
12
|
+
- **email:** emailable-parity verification & enrichment packages ([#718](https://github.com/visulima/visulima/issues/718)) ([e2d8c1e](https://github.com/visulima/visulima/commit/e2d8c1e78e3e0c2548ece87b20d730dab60f677a))
|
|
6
13
|
|
|
7
14
|
### Miscellaneous Chores
|
|
8
15
|
|
|
9
|
-
|
|
10
|
-
|
|
16
|
+
- **release:** @visulima/email-verifier@1.0.0-alpha.1 [skip ci]\n\n## @visulima/email-verifier 1.0.0-alpha.1 (2026-06-30) ([2f54bf0](https://github.com/visulima/visulima/commit/2f54bf0d4eced72aea511f282df9c132e965aac7))
|
|
11
17
|
|
|
12
18
|
### Dependencies
|
|
13
19
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
20
|
+
- **@visulima/disposable-email-domains:** upgraded to 1.0.0
|
|
21
|
+
- **@visulima/email-provider-mx:** upgraded to 1.0.0
|
|
22
|
+
- **@visulima/free-email-domains:** upgraded to 1.0.0
|
|
17
23
|
|
|
18
24
|
## @visulima/email-verifier 1.0.0-alpha.1 (2026-06-30)
|
|
19
25
|
|
|
20
26
|
### Features
|
|
21
27
|
|
|
22
|
-
|
|
23
|
-
|
|
28
|
+
- **email:** emailable-parity verification & enrichment packages ([#718](https://github.com/visulima/visulima/issues/718)) ([e2d8c1e](https://github.com/visulima/visulima/commit/e2d8c1e78e3e0c2548ece87b20d730dab60f677a))
|
|
24
29
|
|
|
25
30
|
### Dependencies
|
|
26
31
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
32
|
+
- **@visulima/disposable-email-domains:** upgraded to 1.0.0-alpha.18
|
|
33
|
+
- **@visulima/email-provider-mx:** upgraded to 1.0.0-alpha.1
|
|
34
|
+
- **@visulima/free-email-domains:** upgraded to 1.0.0-alpha.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/email-verifier",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Mailer-free email address verification and enrichment: syntax, MX/SMTP probing, disposable/free/role detection, catch-all, provider & secure-email-gateway classification, typo suggestions, and a 0–100 quality score.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"accept-all",
|
|
@@ -19,6 +19,11 @@
|
|
|
19
19
|
],
|
|
20
20
|
"homepage": "https://visulima.com/packages/email-verifier",
|
|
21
21
|
"bugs": "https://github.com/visulima/visulima/issues",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "Daniel Bannert",
|
|
25
|
+
"email": "d.bannert@anolilab.de"
|
|
26
|
+
},
|
|
22
27
|
"repository": {
|
|
23
28
|
"type": "git",
|
|
24
29
|
"url": "git+https://github.com/visulima/visulima.git",
|
|
@@ -34,13 +39,13 @@
|
|
|
34
39
|
"url": "https://anolilab.com/support"
|
|
35
40
|
}
|
|
36
41
|
],
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
"sideEffects": false,
|
|
42
|
+
"files": [
|
|
43
|
+
"dist",
|
|
44
|
+
"README.md",
|
|
45
|
+
"CHANGELOG.md"
|
|
46
|
+
],
|
|
43
47
|
"type": "module",
|
|
48
|
+
"sideEffects": false,
|
|
44
49
|
"exports": {
|
|
45
50
|
".": {
|
|
46
51
|
"types": "./dist/index.d.ts",
|
|
@@ -104,22 +109,17 @@
|
|
|
104
109
|
},
|
|
105
110
|
"./package.json": "./package.json"
|
|
106
111
|
},
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
],
|
|
112
|
+
"publishConfig": {
|
|
113
|
+
"access": "public",
|
|
114
|
+
"provenance": true
|
|
115
|
+
},
|
|
112
116
|
"dependencies": {
|
|
113
|
-
"@visulima/disposable-email-domains": "1.0.
|
|
117
|
+
"@visulima/disposable-email-domains": "1.0.1",
|
|
114
118
|
"@visulima/email-provider-mx": "1.0.0",
|
|
115
119
|
"@visulima/free-email-domains": "1.0.0",
|
|
116
120
|
"lru-cache": "11.5.1"
|
|
117
121
|
},
|
|
118
122
|
"engines": {
|
|
119
123
|
"node": "^22.14.0 || >=24.10.0"
|
|
120
|
-
},
|
|
121
|
-
"publishConfig": {
|
|
122
|
-
"access": "public",
|
|
123
|
-
"provenance": true
|
|
124
124
|
}
|
|
125
125
|
}
|