-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.5 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.5 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
{
"name": "hal-mcp",
"version": "1.0.14",
"description": "HAL (HTTP API Layer) - An MCP server that provides HTTP API capabilities to Large Language Models with OpenAPI/Swagger integration",
"main": "dist/index.js",
"bin": {
"hal-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"http",
"api",
"layer",
"typescript",
"claude-desktop",
"openapi",
"swagger",
"rest-api",
"http-client",
"llm",
"ai-tools"
],
"author": "Dean Ward",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.22.0",
"yaml": "^2.3.4",
"@apidevtools/swagger-parser": "^12.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/swagger-parser": "^4.0.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DeanWard/HAL.git"
},
"bugs": {
"url": "https://github.com/DeanWard/HAL/issues"
},
"homepage": "https://deanward.github.io/HAL/"
}