-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
53 lines (46 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@stackverify/email-check",
"version": "1.0.0",
"description": "High-performance email validation library to detect disposable emails, verify mail capability, and estimate inbox delivery likelihood.",
"type": "module",
"author": {
"name": "Morgan Miller",
"email": "hr@stackverify.site",
"url": "https://stackverify.site"
},
"homepage": "https://stackverify.site",
"license": "MIT",
"keywords": [
"email",
"email-validation",
"email-check",
"disposable-email",
"temp-email",
"email-verifier",
"mx-check",
"spam-prevention",
"saas",
"security",
"fraud-detection",
"stackverify",
"marketing-tools"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.build.json",
"build:cjs": "tsc -p tsconfig.build.json --module commonjs --outDir dist/cjs"
}
}