@apiddress/sdk 0.1.0 → 0.1.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/README.md +1 -1
- package/package.json +15 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# apiddress
|
|
2
2
|
|
|
3
|
-
Official Node.js SDK for the [APIddress](https://
|
|
3
|
+
Official Node.js SDK for the [APIddress](https://apiddress.com) email validation API.
|
|
4
4
|
|
|
5
5
|
- Zero runtime dependencies (built on global `fetch`)
|
|
6
6
|
- Node 18+, ESM, full TypeScript types
|
package/package.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apiddress/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Official Node.js SDK for the APIddress email validation API",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"email",
|
|
7
|
+
"validation",
|
|
8
|
+
"email-verification",
|
|
9
|
+
"apiddress"
|
|
10
|
+
],
|
|
6
11
|
"license": "MIT",
|
|
7
12
|
"type": "module",
|
|
8
13
|
"main": "./dist/index.js",
|
|
@@ -13,8 +18,14 @@
|
|
|
13
18
|
"import": "./dist/index.js"
|
|
14
19
|
}
|
|
15
20
|
},
|
|
16
|
-
"files": [
|
|
17
|
-
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE"
|
|
25
|
+
],
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
18
29
|
"engines": {
|
|
19
30
|
"node": ">=18"
|
|
20
31
|
},
|