-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.79 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.79 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@vibetools/dokploy-mcp",
"version": "3.1.2",
"description": "Dokploy MCP server for Codex, Cursor, and Claude with compact stdio and hosted HTTP modes",
"mcpName": "io.github.vcode-sh/dokploy-mcp",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"dokploy-mcp": "dist/index.js"
},
"files": [
"dist",
"server.json"
],
"scripts": {
"build": "npm run clean:dist && npm run build:v2:artifacts && tsc",
"build:v2:artifacts": "node scripts/v2/resolve-openapi.mjs && node scripts/v2/build-openapi-index.mjs && node scripts/v2/build-runtime-schemas.mjs && node scripts/v2/build-sandbox-sdk.mjs",
"bench:protocol": "node scripts/v2/measure-tools-list.mjs",
"bench:search": "node scripts/v2/bench-search.mjs",
"bench:execute": "node scripts/v2/bench-execute.mjs",
"bench:sandbox-startup": "node scripts/v2/bench-sandbox-startup.mjs",
"ci:budgets": "node scripts/v2/check-budgets.mjs",
"ci:full": "npm test && npm run lint && npm run build && npm run ci:budgets && npm run docs:check:facts && npm run smoke:mcp && npm run smoke:search && npm run smoke:execute",
"clean:dist": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"dev": "tsc --watch",
"docs:check:facts": "node scripts/sync-doc-facts.mjs --check",
"smoke:mcp": "npx -y @modelcontextprotocol/inspector --cli node dist/index.js --method tools/list",
"smoke:search": "node scripts/v2/smoke-search-live.mjs",
"smoke:execute": "node scripts/v2/smoke-execute-live.mjs",
"start": "node dist/index.js",
"test": "vitest run",
"test:phase2": "vitest run --config vitest.phase2.config.ts",
"test:phase2:coverage": "vitest run --config vitest.phase2.config.ts --coverage",
"test:phase3": "vitest run --config vitest.phase3.config.ts",
"test:phase3:coverage": "vitest run --config vitest.phase3.config.ts --coverage",
"test:phase4": "vitest run --config vitest.phase4.config.ts",
"test:phase4:coverage": "vitest run --config vitest.phase4.config.ts --coverage",
"test:phase5": "vitest run --config vitest.phase5.config.ts",
"test:phase5:coverage": "vitest run --config vitest.phase5.config.ts --coverage",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"docs:api": "node scripts/openapi-to-markdown.mjs",
"docs:sync:facts": "node scripts/sync-doc-facts.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@clack/prompts": "^1.3.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/node": "^25.6.2",
"@vitest/coverage-v8": "^4.1.5",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"overrides": {
"@hono/node-server": "1.19.14",
"hono": "4.12.18",
"express-rate-limit": "8.5.1",
"ip-address": "10.2.0",
"path-to-regexp": "8.4.2",
"fast-uri": "3.1.2"
},
"engines": {
"node": ">=24.0.0"
},
"sideEffects": false,
"license": "MIT",
"author": "Vibe Code <hello@vcode.sh>",
"repository": {
"type": "git",
"url": "git+https://github.com/vcode-sh/dokploy-mcp.git"
},
"homepage": "https://github.com/vcode-sh/dokploy-mcp",
"bugs": {
"url": "https://github.com/vcode-sh/dokploy-mcp/issues"
},
"keywords": [
"mcp",
"mcp-server",
"dokploy",
"model-context-protocol",
"codex",
"cursor",
"claude-code",
"claude-desktop",
"devops",
"deployment",
"docker",
"docker-compose",
"self-hosted",
"infrastructure",
"typescript"
],
"publishConfig": {
"access": "public"
}
}