-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 KB
/
package.json
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
{
"name": "@winor30/mcp-server-datadog",
"version": "1.1.0",
"description": "MCP server for interacting with Datadog API",
"repository": {
"type": "git",
"url": "https://github.com/winor30/mcp-server-datadog.git"
},
"type": "module",
"bin": {
"mcp-server-datadog": "./build/index.js"
},
"main": "build/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"README.md"
],
"access": "public",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"build": "tsup && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "husky",
"watch": "tsup --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"lint": "eslint . --ext .ts,.js --fix",
"format": "prettier --write .",
"test": "jest",
"lint-staged": "lint-staged"
},
"dependencies": {
"@datadog/datadog-api-client": "^1.32.0",
"@modelcontextprotocol/sdk": "0.6.0",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.2",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.3.3",
"typescript-eslint": "^8.24.1"
},
"engines": {
"node": ">=16.17.0"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}