ynab-mcp-deluxe 0.1.9

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/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "ynab-mcp-deluxe",
3
+ "version": "0.1.9",
4
+ "main": "dist/server.js",
5
+ "types": "dist/server.d.ts",
6
+ "description": "You Need A Budget (YNAB) MCP server for budget automation, help with categorization, reconciliation, etc.",
7
+ "type": "module",
8
+ "license": "MIT",
9
+ "bin": {
10
+ "ynab-mcp-deluxe": "./dist/server.js"
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "scripts": {
16
+ "start": "npx tsx src/server.ts",
17
+ "start:read-only": "YNAB_READ_ONLY=true npx tsx src/server.ts",
18
+ "start:env": "npx @dotenvx/dotenvx run --convention=nextjs --verbose -- bun src/server.ts",
19
+ "start:mock": "bun src/server-with-mocks.ts",
20
+ "dev": "npx @dotenvx/dotenvx run --convention=nextjs --verbose -- fastmcp dev src/server.ts",
21
+ "dev:mock": "npx @dotenvx/dotenvx run --convention=nextjs --verbose -- fastmcp dev src/server-with-mocks.ts",
22
+ "dev:inspect": "npx @dotenvx/dotenvx run --convention=nextjs --verbose -- fastmcp inspect src/server.ts",
23
+ "dev:inspect:mock": "npx @dotenvx/dotenvx run --convention=nextjs --verbose -- fastmcp inspect src/server-with-mocks.ts",
24
+ "prepare": "(husky || true) && (npx @justinhaaheim/version-manager --no-fail || true)",
25
+ "build": "tsc -p tsconfig.build.json && chmod +x dist/server.js",
26
+ "build:clean": "rm -rf dist && bun run build",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest",
29
+ "logs": "tail -f ~/.config/ynab-mcp-deluxe/logs/server.*.log | npx pino-pretty",
30
+ "logs:raw": "tail -f ~/.config/ynab-mcp-deluxe/logs/server.*.log",
31
+ "logs:dir": "ls -la ~/.config/ynab-mcp-deluxe/logs/",
32
+ "generate:mocks": "curl -sL -o src/mocks/ynab-openapi.yaml https://api.ynab.com/papi/open_api_spec.yaml && npx msw-auto-mock src/mocks/ynab-openapi.yaml -o src/mocks --base-url https://api.ynab.com/v1 --typescript -c 200,201",
33
+ "lint-base": "eslint --report-unused-disable-directives --max-warnings 0",
34
+ "lint": "bun run lint-base -- .",
35
+ "lint:fix": "bun run lint-base -- --fix .",
36
+ "prettier-check": "prettier --check .",
37
+ "prettier:write": "prettier --write .",
38
+ "ts-check": "tsc --noEmit",
39
+ "signal:serial": "bun run ts-check; bun run lint; bun run prettier-check",
40
+ "signal": "bun run signal:serial",
41
+ "dynamic-version": "npx @justinhaaheim/version-manager",
42
+ "dynamic-version:install": "npx @justinhaaheim/version-manager install",
43
+ "dynamic-version:install-scripts": "npx @justinhaaheim/version-manager install-scripts",
44
+ "dynamic-version:generate": "npx @justinhaaheim/version-manager",
45
+ "prebuild": "npx @justinhaaheim/version-manager",
46
+ "predev": "npx @justinhaaheim/version-manager",
47
+ "presignal": "npx @justinhaaheim/version-manager",
48
+ "prestart": "npx @justinhaaheim/version-manager",
49
+ "prepublishOnly": "bun run build:clean"
50
+ },
51
+ "keywords": [
52
+ "fastmcp",
53
+ "mcp",
54
+ "ynab"
55
+ ],
56
+ "release": {
57
+ "branches": [
58
+ "main"
59
+ ],
60
+ "plugins": [
61
+ "@semantic-release/commit-analyzer",
62
+ "@semantic-release/release-notes-generator",
63
+ "@semantic-release/npm",
64
+ "@semantic-release/github"
65
+ ]
66
+ },
67
+ "dependencies": {
68
+ "@metrichor/jmespath": "^0.3.1",
69
+ "deep-diff": "^1.0.2",
70
+ "fastmcp": "3.30.1",
71
+ "pino": "10.3.0",
72
+ "pino-roll": "4.0.0",
73
+ "ynab": "2.10.0",
74
+ "zod": "^3.25"
75
+ },
76
+ "devDependencies": {
77
+ "@justinhaaheim/version-manager": "github:justinhaaheim/version-manager#0.5.1",
78
+ "@faker-js/faker": "^10.2.0",
79
+ "tsx": "^4.19.4",
80
+ "@tsconfig/node22": "^22.0.1",
81
+ "@types/deep-diff": "^1.0.5",
82
+ "@types/node": "^25.0.9",
83
+ "eslint": "^9.26.0",
84
+ "eslint-config-jha-react-node": "github:justinhaaheim/eslint-config-jha-react-node",
85
+ "husky": "^9.1.7",
86
+ "jiti": "^2.4.2",
87
+ "lint-staged": "^14.0.1",
88
+ "msw": "^2.12.7",
89
+ "pino-pretty": "13.1.3",
90
+ "prettier": "^3.5.3",
91
+ "semantic-release": "^24.2.3",
92
+ "typescript": "^5.8.3",
93
+ "typescript-eslint": "^8.32.0",
94
+ "vitest": "^3.1.3"
95
+ },
96
+ "lint-staged": {
97
+ "**/*": "prettier --check --ignore-unknown",
98
+ "*.(js|jsx|cjs|ts|tsx)": [
99
+ "eslint --cache --max-warnings=0 --no-warn-ignored"
100
+ ]
101
+ }
102
+ }