-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.38 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
54
55
56
57
58
59
{
"name": "mailcheckr",
"version": "0.3.0",
"description": "Fast email validation with configurable syntax, DNS, disposable, and SMTP checks.",
"author": {
"name": "Nischal Dahal",
"email": "nischaldahal01395@gmail.com",
"url": "https://github.com/broisnischal"
},
"homepage": "https://github.com/broisnischal/mailcheckr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/broisnischal/mailcheckr.git"
},
"bugs": {
"url": "https://github.com/broisnischal/mailcheckr/issues"
},
"license": "MIT",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"main": "dist/index.mjs",
"type": "module",
"private": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md"
],
"keywords": [
"email",
"email-validation",
"mx",
"dns",
"disposable-email",
"bun"
],
"scripts": {
"build": "obuild ./src/index.ts",
"test": "bun test",
"test:email": "bun run ./scripts/test-email-cli.ts",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@types/bun": "latest",
"@changesets/cli": "latest",
"obuild": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}