-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.82 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
70
71
72
{
"name": "easybill-mcp",
"version": "1.0.2",
"description": "MCP server for the easybill REST API (invoices, customers, articles, payments, time tracking)",
"type": "module",
"main": "dist/index.js",
"bin": {
"easybill-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"prepare": "npm run build",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --test test/format.test.mjs test/client.test.mjs test/rate-limit.test.mjs test/server.test.mjs",
"test:live": "npm run build && node --env-file=.env --test test/live.test.mjs",
"test:all": "npm run test && npm run test:live",
"smoke": "node --env-file=.env dist/index.js --selftest",
"inspect": "npx @modelcontextprotocol/inspector node --env-file=.env dist/index.js",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"model-context-protocol",
"claude",
"claude-code",
"claude-desktop",
"cursor",
"vscode",
"copilot",
"windsurf",
"zed",
"codex",
"gemini-cli",
"cline",
"easybill",
"invoice",
"invoicing",
"accounting",
"buchhaltung"
],
"author": "stack74",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stack74/easybill-mcp.git"
},
"homepage": "https://github.com/stack74/easybill-mcp#readme",
"bugs": {
"url": "https://github.com/stack74/easybill-mcp/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}