-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.15 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.15 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
{
"name": "aeat-mcp",
"version": "1.1.1",
"description": "MCP server for Spanish AEAT tax reference data — IRPF brackets, VAT rates, fiscal calendar, tax form catalog, and more. 100% official sources (BOE, AEAT).",
"type": "module",
"main": "dist/index.js",
"bin": {
"aeat-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc && cp -r src/data dist/",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"aeat",
"spain",
"tax",
"irpf",
"iva",
"vat",
"fiscal",
"hacienda",
"autonomos"
],
"author": "iMark Apps",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iMark21/aeat-mcp.git"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}