-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 787 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 787 Bytes
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
{
"name": "mcp-ynab",
"version": "1.0.0",
"description": "Custom MCP server for YNAB API (TypeScript)",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"mcp",
"ynab"
],
"author": "Luis Valenzuela",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"dotenv": "^16.0.0",
"neverthrow": "^8.2.0",
"yargs": "^17.7.2",
"zod": "^3.20.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/yargs": "^17.0.33",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}