-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.08 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
{
"name": "@jurislm/coolify-mcp",
"version": "3.6.0",
"description": "MCP server implementation for Coolify",
"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/index.js",
"dist/index.d.ts",
"dist/lib/",
"dist/types/"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"dev": "bun --watch src/index.ts",
"typecheck": "tsc --noEmit",
"test": "bun test ./src/__tests__/*.test.ts",
"test:watch": "bun test --watch ./src/__tests__/*.test.ts",
"test:coverage": "bun test --coverage ./src/__tests__/*.test.ts",
"test:integration": "bun test --timeout 60000 ./src/__tests__/integration",
"typecheck:tests": "tsc --noEmit -p tsconfig.test.json",
"lint": "eslint --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublishOnly": "bun run build && bun run test && bun run typecheck:tests && bun run lint",
"start": "bun dist/index.js"
},
"keywords": [
"coolify",
"mcp",
"model-context-protocol"
],
"author": "Stuart Mason",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jurislm/coolify-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"@types/node": "^25.0.3",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"husky": "^9.0.11",
"lint-staged": "^16.2.7",
"prettier": "^3.5.3",
"shx": "^0.4.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.51.0"
},
"packageManager": "bun@1.3.9",
"engines": {
"bun": ">=1.1.0"
},
"overrides": {
"fast-uri": ">=3.1.2"
},
"lint-staged": {
"*.{ts,js,json,md,yaml,yml}": "prettier --write",
"*.ts": "eslint --fix"
}
}