-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 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": "@dokploy/mcp",
"version": "0.0.3",
"description": "MCP Server for Dokploy API",
"main": "build/index.js",
"bin": {
"dokploy-mcp": "build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "pnpm run clean && tsc && chmod 755 build/index.js",
"dev": "tsc --watch",
"start:stdio": "node --env-file=.env build/index.js",
"start:http": "node --env-file=.env build/index.js --http",
"start:sse": "node --env-file=.env build/index.js --sse",
"dev:http": "pnpm run build && pnpm run start:http",
"dev:sse": "pnpm run build && pnpm run start:sse",
"fetch-openapi": "tsx scripts/fetch-openapi.ts",
"generate": "tsx scripts/generate-tools.ts",
"generate:all": "pnpm fetch-openapi && pnpm generate",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format --write",
"format:check": "biome format",
"type-check": "tsc --noEmit",
"clean": "rm -rf build",
"precommit": "biome check && pnpm run type-check",
"test": "echo \"Error: no test spcified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dokploy/mcp.git"
},
"keywords": [
"modelcontextprotocol",
"mcp",
"dokploy"
],
"author": "Henrique Andrade <developer@henriqueandrade.dev>",
"bugs": {
"url": "https://github.com/Dokploy/mcp/issues"
},
"homepage": "https://github.com/Dokploy/mcp#readme",
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@hono/node-server": "^1.19.13",
"@modelcontextprotocol/sdk": "^1.12.0",
"axios": "^1.9.0",
"hono": "^4.12.12",
"zod": "^3.25.28"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^22.15.21",
"json-schema-to-zod": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
}
}