@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 +9 -6
- package/dist/cli.js +471 -428
- package/dist/cli.js.map +1 -1
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@stephendolan/ynab-cli)
|
|
4
4
|
[](https://www.npmjs.com/package/@stephendolan/ynab-cli)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](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
|
-
|
|
24
|
+
# Install globally with bun (recommended)
|
|
25
|
+
bun install -g @stephendolan/ynab-cli
|
|
24
26
|
|
|
25
27
|
# Or run directly without installing
|
|
26
|
-
|
|
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
|
-
|
|
52
|
-
|
|
54
|
+
bun install
|
|
55
|
+
bun run link # Build and link globally
|
|
53
56
|
```
|
|
54
57
|
|
|
55
58
|
## Authentication
|