This repository was archived by the owner on Feb 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.65 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.65 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
{
"name": "cold-email-cli",
"version": "2.1.0",
"type": "module",
"description": "Professional multi-platform cold email automation CLI with 500+ commands across 9 major platforms",
"main": "dist/cli.js",
"types": "dist/index.d.ts",
"bin": {
"cec": "dist/cli.js",
"cold-email-cli": "dist/cli.js"
},
"packageManager": "bun@1.0.0",
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun run scripts/build.ts",
"build:mac": "bun run scripts/build-mac.sh",
"start": "bun run src/cli.ts",
"cli": "bun run src/cli.ts",
"platforms": "bun run src/cli.ts platforms",
"search": "bun run src/cli.ts search",
"health": "bun run src/cli.ts health",
"menu": "bun run src/cli.ts",
"smartlead": "bun run src/cli.ts smartlead",
"instantly": "bun run src/cli.ts instantly",
"apollo": "bun run src/cli.ts apollo",
"salesforge": "bun run src/cli.ts salesforge",
"emailbison": "bun run src/cli.ts emailbison",
"amplemarket": "bun run src/cli.ts amplemarket",
"outreach": "bun run src/cli.ts outreach",
"salesloft": "bun run src/cli.ts salesloft",
"lemlist": "bun run src/cli.ts lemlist",
"quickmail": "bun run src/cli.ts quickmail",
"test": "jest",
"lint": "biome check src/",
"lint:fix": "biome check src/ --fix",
"format": "biome format src/ --write",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"install:mac": "bun run scripts/install-mac.sh",
"installer:mac": "bun run scripts/create-mac-installer.sh",
"docs:generate": "node scripts/docs-generate.js"
},
"keywords": [
"cold-email",
"automation",
"cli",
"smartlead",
"instantly",
"apollo",
"salesforge",
"email-marketing",
"outreach",
"salesloft",
"lemlist",
"amplemarket",
"emailbison",
"quickmail",
"typescript",
"bun",
"react-ink"
],
"author": "Cold Email Community",
"license": "MIT",
"homepage": "https://github.com/your-username/smartlead-cli-ink#readme",
"repository": {
"type": "git",
"url": "https://github.com/your-username/smartlead-cli-ink.git"
},
"bugs": {
"url": "https://github.com/your-username/smartlead-cli-ink/issues"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"dependencies": {
"axios": "^1.7.2",
"ink": "^5.0.1",
"react": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"community": {
"discord": "https://discord.gg/mB76X5QJ"
},
"funding": null
}