-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 848 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 848 Bytes
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
{
"name": "express-email-verify-secure",
"version": "1.0.0",
"description": "Production-ready secure email verification and OTP package for Express.js",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build"
},
"keywords": [
"express",
"email",
"otp",
"email-verification",
"security",
"typescript",
"nodejs"
],
"author": "haseeb_mernstack",
"license": "MIT",
"type": "module",
"dependencies": {
"nodemailer": "^7.0.12",
"validator": "^13.15.26"
},
"devDependencies": {
"@types/node": "^25.0.9",
"@types/validator": "^13.15.10",
"eslint": "^9.39.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}