-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.32 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.32 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
{
"name": "@jmoyson/coldr",
"version": "0.1.0",
"description": "Run Cold emails campaigns from your terminal.",
"bin": {
"coldr": "bin/index.js"
},
"type": "module",
"files": [
"bin/",
"src/",
"scaffold/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run lint && npm test",
"pack:preview": "npm pack --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmoyson/coldr.git"
},
"keywords": [
"cold-email",
"email-campaign",
"cli",
"automation",
"email-marketing",
"outreach"
],
"author": "Jeremy Moyson <moyson.jeremy@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmoyson/coldr/issues"
},
"homepage": "https://github.com/jmoyson/coldr#readme",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"ora": "^9.0.0",
"papaparse": "^5.5.3",
"resend": "^6.3.0",
"zod": "^4.1.12"
},
"devDependencies": {
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"vitest": "^4.0.4"
}
}