-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (56 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
56
{
"name": "@masonator/coolify-mcp",
"scope": "@masonator",
"version": "0.1.0",
"description": "MCP server implementation for Coolify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"coolify-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"prepare": "husky",
"prepublishOnly": "npm test && npm run lint",
"start": "node dist/index.js"
},
"keywords": [
"coolify",
"mcp",
"model-context-protocol"
],
"author": "Stuart Mason",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.23",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"markdownlint-cli2": "^0.12.1",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18"
}
}