inboxd 1.0.2 → 1.0.3
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 +6 -1
- package/images/banner.png +0 -0
- package/package.json +1 -1
- package/src/cli.js +2 -1
package/README.md
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Inboxd
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/inboxd)
|
|
4
|
+
[](https://www.npmjs.com/package/inboxd)
|
|
4
5
|
[](https://opensource.org/licenses/MIT)
|
|
5
6
|
|
|
7
|
+
<a href="https://buymeacoffee.com/dparedesi" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" height="50"></a>
|
|
8
|
+
|
|
6
9
|
A CLI tool for monitoring Gmail inboxes with multi-account support and macOS notifications.
|
|
7
10
|
|
|
11
|
+

|
|
12
|
+
|
|
8
13
|
## Features
|
|
9
14
|
|
|
10
15
|
- **Multi-account support** - Monitor multiple Gmail accounts from one command
|
|
Binary file
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -10,6 +10,7 @@ const readline = require('readline');
|
|
|
10
10
|
const path = require('path');
|
|
11
11
|
const os = require('os');
|
|
12
12
|
const fs = require('fs');
|
|
13
|
+
const pkg = require('../package.json');
|
|
13
14
|
|
|
14
15
|
/**
|
|
15
16
|
* Prompts user for input
|
|
@@ -39,7 +40,7 @@ async function main() {
|
|
|
39
40
|
program
|
|
40
41
|
.name('inbox')
|
|
41
42
|
.description('Gmail monitoring CLI with multi-account support')
|
|
42
|
-
.version(
|
|
43
|
+
.version(pkg.version);
|
|
43
44
|
|
|
44
45
|
// Setup command - interactive wizard for first-time users
|
|
45
46
|
program
|