-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.91 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.91 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
73
74
75
76
77
78
79
{
"name": "@iamsamuelfraga/mcp-holded",
"mcpName": "io.github.iamsamuelfraga/mcp-holded",
"version": "1.5.0",
"description": "MCP Server for Holded Invoice API",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-holded": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"prepare": "husky"
},
"keywords": [
"mcp",
"holded",
"invoice",
"api",
"claude"
],
"author": "Samuel Fraga",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iamsamuelfraga/mcp-holded.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"form-data": "^4.0.5",
"node-fetch": "^3.3.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.2",
"@types/node": "^24.10.1",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"semantic-release": "^25.0.2",
"typescript": "^5.3.0",
"typescript-eslint": "^8.47.0",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=22.14.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}