-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@stephendolan/ynab-cli",
"version": "2.8.2",
"description": "A command-line interface for You Need a Budget (YNAB)",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"ynab": "dist/cli.js"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun run tsup",
"test": "bun run vitest",
"lint": "bun run oxlint src",
"format": "bun run biome format --write src",
"format:check": "bun run biome format src",
"typecheck": "bun run tsc --noEmit",
"link": "bun run build && bun link",
"start": "bun dist/cli.js",
"prepublishOnly": "bun run build"
},
"keywords": [
"ynab",
"budget",
"cli",
"finance",
"command-line",
"budgeting",
"llm",
"ai-friendly"
],
"author": "Stephen Dolan <https://github.com/stephendolan>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stephendolan/ynab-cli.git"
},
"bugs": {
"url": "https://github.com/stephendolan/ynab-cli/issues"
},
"homepage": "https://github.com/stephendolan/ynab-cli#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@napi-rs/keyring": "^1.2.0",
"commander": "^14.0.2",
"conf": "^15.0.2",
"dayjs": "^1.11.19",
"ynab": "^2.10.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "latest",
"oxlint": "^1.38.0",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^4.0.4"
},
"engines": {
"bun": ">=1.0.0"
}
}