-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.6 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.6 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
{
"name": "@masonator/coolify-mcp",
"scope": "@masonator",
"version": "2.7.3",
"mcpName": "io.github.StuMason/coolify",
"description": "MCP server for Coolify — 38 optimized tools for infrastructure management, diagnostics, and documentation search",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"coolify-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"dev": "tsc --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=integration",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=integration",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --testPathIgnorePatterns=integration",
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=integration --testTimeout=60000",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublishOnly": "npm test && npm run lint",
"start": "node dist/index.js"
},
"keywords": [
"coolify",
"mcp",
"model-context-protocol",
"infrastructure",
"deployment",
"self-hosted",
"paas",
"ai",
"devops"
],
"author": {
"name": "Stuart Mason",
"url": "https://stumason.dev"
},
"license": "MIT",
"homepage": "https://stumason.dev",
"repository": {
"type": "git",
"url": "https://github.com/StuMason/coolify-mcp.git"
},
"bugs": {
"url": "https://github.com/StuMason/coolify-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.23.0",
"minisearch": "^7.2.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"dotenv": "^17.2.3",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.21.0",
"prettier": "^3.5.3",
"shx": "^0.4.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.51.0"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{ts,js,json,md,yaml,yml}": "prettier --write",
"*.ts": "eslint --fix"
}
}