@mailkite/cli 0.6.0 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +6 -1
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -4,7 +4,12 @@ The MailKite command-line client — a wrangler/vercel-style terminal tool for
4
4
  [MailKite](https://mailkite.dev). Sign in, add domains, set DNS + webhooks, send
5
5
  mail, and tail inbound messages, all from your shell.
6
6
 
7
- It's a **thin layer over the [MailKite Node SDK](../node)**: every network call
7
+ > **Read-only mirror.** This repo is a generated, release-time mirror of the MailKite
8
+ > monorepo (the private source of truth); the source isn't developed here. Install
9
+ > `@mailkite/cli` from npm rather than cloning, and see the docs at
10
+ > <https://mailkite.dev/docs/cli>.
11
+
12
+ It's a **thin layer over the [MailKite Node SDK](https://github.com/mailkite/mailkite-node)**: every network call
8
13
  goes through the `MailKite` client, so auth, base URL, and error handling live in
9
14
  one place. The CLI adds token storage, interactive flows, and a one-shot setup
10
15
  wizard on top.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mailkite/cli",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "description": "MailKite command-line client — sign in, add domains, set DNS + webhooks, send mail, and tail inbound messages from your terminal. Built on the MailKite Node SDK.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,11 +30,10 @@
30
30
  "homepage": "https://mailkite.dev/docs/cli",
31
31
  "repository": {
32
32
  "type": "git",
33
- "url": "git+https://github.com/mailkite/mailkite.git",
34
- "directory": "sdks/cli"
33
+ "url": "git+https://github.com/mailkite/mailkite-cli.git"
35
34
  },
36
35
  "license": "MIT",
37
36
  "dependencies": {
38
- "mailkite": "^0.6.0"
37
+ "mailkite": "^0.8.0"
39
38
  }
40
39
  }