-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "mcp-dockhand",
"version": "1.0.0",
"description": "MCP Server for Dockhand Docker Management - exposes 130+ API endpoints as MCP tools",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"keywords": [
"mcp",
"mcp-server",
"docker",
"dockhand",
"model-context-protocol",
"docker-management"
],
"author": "Bjoern Strausmann <bjoern@strausmann.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/strausmann/mcp-dockhand.git"
},
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/express": "^5.0.2",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"conventional-changelog-conventionalcommits": "^9.3.1",
"husky": "^9.1.7",
"semantic-release": "^25.0.3",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}