@cli4ai/gmail 1.0.9 → 1.0.10

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 (3) hide show
  1. package/cli4ai.json +2 -2
  2. package/package.json +1 -1
  3. package/run.ts +1 -1
package/cli4ai.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "gmail",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Gmail CLI tool for messages, threads, and drafts",
5
5
  "author": "cliforai",
6
6
  "license": "MIT",
7
7
  "entry": "run.ts",
8
- "runtime": "bun",
8
+ "runtime": "node",
9
9
  "keywords": [
10
10
  "gmail",
11
11
  "email",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cli4ai/gmail",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Gmail CLI tool for messages, threads, and drafts",
5
5
  "author": "cliforai",
6
6
  "license": "MIT",
package/run.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env npx tsx
2
2
  // Gmail CLI tool
3
3
 
4
4
  import { cli, withErrorHandling } from '@cli4ai/lib/cli.ts';