-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.25 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.25 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
{
"name": "mcp-facturascripts",
"version": "1.0.2",
"description": "MCP server for comprehensive FacturaScripts integration - provides access to 59 resources with 65 interactive tools including specialized business analytics, OpenAPI part16 implementation, and PDF export functionality",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/cristotodev/mcp-facturascripts.git"
},
"bugs": {
"url": "https://github.com/cristotodev/mcp-facturascripts/issues"
},
"homepage": "https://github.com/cristotodev/mcp-facturascripts#readme",
"main": "mcp-server.js",
"scripts": {
"dev": "node mcp-server.js",
"build": "tsc -b",
"start": "node mcp-server.js",
"mcp": "node mcp-server.js",
"dev:ts": "tsx src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:auto": "auto-changelog",
"changelog:all": "auto-changelog --template keepachangelog",
"changelog:unreleased": "conventional-changelog -p angular -u",
"version": "npm run changelog && git add CHANGELOG.md",
"version:minor": "npm version minor && npm run build && npm run test:run",
"version:major": "npm version major && npm run build && npm run test:run",
"release": "npm version patch && npm run build && npm run test:run",
"release:minor": "npm run version:minor",
"release:major": "npm run version:major",
"semantic-release": "semantic-release",
"semantic-release:dry": "semantic-release --dry-run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.0",
"dotenv": "^16.4.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.0.0",
"@vitest/ui": "^3.2.4",
"auto-changelog": "^2.5.0",
"conventional-changelog-cli": "^5.0.0",
"semantic-release": "^24.2.7",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
}
}