-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"$schema": "https://json.schemastore.org/package",
"name": "bulk-email",
"description": "Send bulk emails using nodemailer",
"version": "2.0.1",
"main": "dist/app.js",
"module": "dist/app.js",
"repository": {
"type": "git",
"url": "https://github.com/HacktheHill/bulk-email"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/HacktheHill/bulk-email/issues"
},
"keywords": [
"bulk",
"email",
"cli",
"send",
"smtp",
"nodemailer"
],
"type": "module",
"scripts": {
"start": "npx tsx src/app.ts",
"build": "tsc"
},
"bin": "dist/app.js",
"dependencies": {
"@types/fs-extra": "^9.0.13",
"commander": "^9.4.1",
"csvtojson": "^2.0.10",
"dotenv": "^16.0.3",
"fs-extra": "^11.1.0",
"handlebars": "^4.7.8",
"inquirer": "^9.1.4",
"nodemailer": "^8.0.5",
"nodemailer-smtp-transport": "^2.7.4",
"smtp-server": "^3.11.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/nodemailer": "^6.4.7",
"@types/nodemailer-smtp-transport": "^2.7.5",
"@types/smtp-server": "^3.5.7",
"typescript": "^4.9.4"
}
}