-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.76 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.76 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@profullstack/lead-generator",
"version": "1.2.4",
"description": "A CLI tool for sending mass lead emails to prospective clients from CSV files with AI-powered personalization",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"README.md",
"bin",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/profullstack/lead-generator.git"
},
"bugs": {
"url": "https://github.com/profullstack/lead-generator/issues"
},
"homepage": "https://profullstack.com",
"scripts": {
"test": "mocha test/**/*.test.js",
"test:csv": "mocha test/csv-parser.test.js",
"test:email": "mocha test/email-service.test.js",
"test:template": "mocha test/template-engine.test.js",
"test:ai": "mocha test/ai-service.test.js",
"test:batch": "mocha test/batch-processor.test.js",
"test:cli": "mocha test/cli.test.js",
"generate-templates": "node scripts/generate-templates.js",
"example": "node examples/basic-usage.js",
"example:csv": "node examples/csv-processing.js",
"example:batch": "node examples/batch-sending.js",
"cli": "./bin/lead-generator.js",
"send": "./bin/lead-generator.js send",
"templates": "./bin/lead-generator.js templates",
"voice": "./bin/lead-generator.js voice",
"prepare": "husky"
},
"bin": {
"lead-generator": "./bin/lead-generator.js",
"lg": "./bin/lead-generator.js"
},
"keywords": [
"email",
"marketing",
"lead-generation",
"mailgun",
"csv",
"ai",
"openai",
"twilio",
"voice",
"cli",
"automation",
"sales",
"outreach",
"personalization"
],
"author": "Profullstack, Inc.",
"license": "MIT",
"packageManager": "pnpm@10.6.5",
"dependencies": {
"@hono/node-server": "^1.14.4",
"ansi-colors": "^4.1.3",
"cli-progress": "^3.12.0",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.4.5",
"dotenv-flow": "^4.1.0",
"form-data": "^4.0.3",
"hono": "^4.7.11",
"inquirer": "^12.6.3",
"mailgun.js": "^10.2.3",
"openai": "^4.67.3",
"twilio": "^5.7.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"chai": "^4.3.7",
"husky": "^9.1.7",
"mocha": "^10.2.0",
"sinon": "^17.0.1"
},
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"import": "./index.js"
},
"./csv-parser": {
"import": "./src/csv-parser.js"
},
"./email-service": {
"import": "./src/email-service.js"
},
"./template-engine": {
"import": "./src/template-engine.js"
},
"./ai-service": {
"import": "./src/ai-service.js"
},
"./voice-service": {
"import": "./src/voice-service.js"
},
"./batch-processor": {
"import": "./src/batch-processor.js"
}
}
}