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 CHANGED
@@ -1,10 +1,15 @@
1
- # inboxd
1
+ # Inboxd
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/inboxd.svg)](https://www.npmjs.com/package/inboxd)
4
+ [![npm downloads](https://img.shields.io/npm/dm/antigravity-claude-proxy.svg)](https://www.npmjs.com/package/inboxd)
4
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
+ ![VoxScriber Banner](images/banner.png)
12
+
8
13
  ## Features
9
14
 
10
15
  - **Multi-account support** - Monitor multiple Gmail accounts from one command
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inboxd",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI assistant for Gmail monitoring with multi-account support and AI-ready JSON output",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
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('1.0.0');
43
+ .version(pkg.version);
43
44
 
44
45
  // Setup command - interactive wizard for first-time users
45
46
  program