-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.09 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.09 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
69
{
"name": "@iiatlas/hledger-mcp",
"version": "1.0.5",
"description": "HLedger MCP server - A Model Context Protocol bridge for HLedger accounting software",
"keywords": [
"hledger",
"accounting",
"mcp",
"model-context-protocol",
"finance",
"bookkeeping",
"ledger",
"plain-text-accounting"
],
"homepage": "https://github.com/iiAtlas/hledger-mcp#readme",
"bugs": {
"url": "https://github.com/iiAtlas/hledger-mcp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iiAtlas/hledger-mcp.git"
},
"license": "MIT",
"author": "Atlas Wegman",
"type": "module",
"main": "index.js",
"bin": {
"hledger-mcp": "build/index.js"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"debug": "npx @modelcontextprotocol/inspector node",
"mcpb:validate": "npx @anthropic-ai/mcpb validate manifest.json",
"mcpb:pack": "npm ci && npm run build && npx @anthropic-ai/mcpb pack . hledger-mcp-v$npm_package_version.mcpb",
"mcpb:sign-dev": "npx @anthropic-ai/mcpb sign hledger-mcp-v$npm_package_version.mcpb --self-signed",
"mcpb:verify": "npx @anthropic-ai/mcpb verify hledger-mcp-v$npm_package_version.mcpb",
"mcpb:info": "npx @anthropic-ai/mcpb info hledger-mcp-v$npm_package_version.mcpb",
"npm:publish": "npm publish --access public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"jest": "^30.1.3",
"prettier": "^3.3.3",
"ts-jest": "^29.4.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
},
"engines": {
"node": ">=18.0.0"
}
}