mailfully 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +126 -0
- package/dist/bin.d.ts +2 -0
- package/dist/bin.js +37 -0
- package/dist/commands/analytics.d.ts +3 -0
- package/dist/commands/analytics.js +97 -0
- package/dist/commands/auth.d.ts +3 -0
- package/dist/commands/auth.js +82 -0
- package/dist/commands/domains.d.ts +3 -0
- package/dist/commands/domains.js +135 -0
- package/dist/commands/emails.d.ts +3 -0
- package/dist/commands/emails.js +273 -0
- package/dist/commands/suppressions.d.ts +9 -0
- package/dist/commands/suppressions.js +44 -0
- package/dist/commands/templates.d.ts +3 -0
- package/dist/commands/templates.js +123 -0
- package/dist/config.d.ts +30 -0
- package/dist/config.js +82 -0
- package/dist/context.d.ts +45 -0
- package/dist/context.js +54 -0
- package/dist/failure.d.ts +22 -0
- package/dist/failure.js +34 -0
- package/dist/flags.d.ts +3 -0
- package/dist/flags.js +7 -0
- package/dist/output.d.ts +15 -0
- package/dist/output.js +84 -0
- package/dist/pages.d.ts +42 -0
- package/dist/pages.js +76 -0
- package/dist/parse.d.ts +37 -0
- package/dist/parse.js +92 -0
- package/dist/program.d.ts +35 -0
- package/dist/program.js +83 -0
- package/dist/prompt.d.ts +12 -0
- package/dist/prompt.js +37 -0
- package/dist/version.d.ts +6 -0
- package/dist/version.js +11 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mailfully",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "The Mailfully CLI — send email and manage domains, templates, suppressions, and analytics from the terminal.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mailfully",
|
|
7
|
+
"cli",
|
|
8
|
+
"command-line",
|
|
9
|
+
"email",
|
|
10
|
+
"email-api",
|
|
11
|
+
"transactional-email",
|
|
12
|
+
"send-email",
|
|
13
|
+
"mailer",
|
|
14
|
+
"terminal",
|
|
15
|
+
"devtools",
|
|
16
|
+
"ses",
|
|
17
|
+
"typescript"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://mailfully.com",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/Mailfully/mailfully.git",
|
|
23
|
+
"directory": "packages/cli"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/Mailfully/mailfully/issues"
|
|
27
|
+
},
|
|
28
|
+
"author": "Mailfully",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"private": false,
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"type": "module",
|
|
35
|
+
"bin": {
|
|
36
|
+
"mailfully": "./dist/bin.js"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"README.md"
|
|
41
|
+
],
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=24"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"commander": "^15.0.0",
|
|
47
|
+
"@mailfully/node": "^0.2.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^26.4.1",
|
|
51
|
+
"eslint": "^10.9.1",
|
|
52
|
+
"typescript": "^6.0.3",
|
|
53
|
+
"typescript-eslint": "^8.69.0",
|
|
54
|
+
"vitest": "^4.1.11",
|
|
55
|
+
"@mailfully/config": "0.0.0"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"lint": "eslint .",
|
|
59
|
+
"typecheck": "tsc --noEmit",
|
|
60
|
+
"test": "vitest run",
|
|
61
|
+
"build": "tsc -p tsconfig.build.json"
|
|
62
|
+
}
|
|
63
|
+
}
|