-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.33 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": "dokploy-mcp",
"version": "1.0.7",
"description": "MCP server for Dokploy API - complete type-safe integration",
"bin": {
"dokploy-mcp": "./dist/stdio.js"
},
"scripts": {
"build": "node scripts/update-tools-status.js && tsc --noEmit && xmcp build",
"dev": "xmcp dev",
"generate-types": "openapi-typescript openapi.json -o src/lib/api-types.ts",
"update-tools-status": "node scripts/update-tools-status.js",
"prepublishOnly": "npm run build",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"check:fix": "biome check --write ."
},
"files": [
"dist",
"README.md"
],
"keywords": [
"mcp",
"dokploy",
"model-context-protocol",
"deployment",
"docker"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tacticlaunch/dokploy-mcp"
},
"dependencies": {
"@tacticlaunch/xmcp": "^0.0.6",
"openapi-fetch": "^0.12.2",
"zod": "3.24.4"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@types/node": "^22.0.0",
"openapi-typescript": "^7.4.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}