@stephendolan/ynab-cli 1.2.5 → 2.0.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@stephendolan/ynab-cli.svg)](https://www.npmjs.com/package/@stephendolan/ynab-cli)
4
4
  [![npm downloads](https://img.shields.io/npm/dm/@stephendolan/ynab-cli.svg)](https://www.npmjs.com/package/@stephendolan/ynab-cli)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
- [![Node.js Version](https://img.shields.io/node/v/@stephendolan/ynab-cli.svg)](https://nodejs.org)
6
+ [![Bun](https://img.shields.io/badge/Bun-%3E%3D1.0-black)](https://bun.sh)
7
7
 
8
8
  A command-line interface for You Need a Budget (YNAB) designed to enable LLMs (Claude, ChatGPT, etc.) and developers to quickly interface with YNAB budgets, make changes, and audit financial data.
9
9
 
@@ -18,12 +18,15 @@ A command-line interface for You Need a Budget (YNAB) designed to enable LLMs (C
18
18
 
19
19
  ## Installation
20
20
 
21
+ Requires [Bun](https://bun.sh) runtime.
22
+
21
23
  ```bash
22
- # Install globally
23
- npm install -g @stephendolan/ynab-cli
24
+ # Install globally with bun (recommended)
25
+ bun install -g @stephendolan/ynab-cli
24
26
 
25
27
  # Or run directly without installing
26
- npx @stephendolan/ynab-cli budgets list
28
+ bunx @stephendolan/ynab-cli budgets list
29
+ npx @stephendolan/ynab-cli budgets list # also works
27
30
  ```
28
31
 
29
32
  ### Linux Prerequisites
@@ -48,8 +51,8 @@ Without `libsecret`, use the `YNAB_API_KEY` environment variable instead.
48
51
  ```bash
49
52
  git clone https://github.com/stephendolan/ynab-cli.git
50
53
  cd ynab-cli
51
- npm install
52
- npm run link # Build and link globally
54
+ bun install
55
+ bun run link # Build and link globally
53
56
  ```
54
57
 
55
58
  ## Authentication