forked from serkan-ozal/jaeger-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.49 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.49 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
{
"name": "@digmaai/jaeger-mcp",
"version": "0.1.0",
"description": "MCP Server for Jaeger",
"type": "commonjs",
"main": "./dist/index.js",
"bin": {
"jaeger-mcp-server": "./dist/index.js"
},
"author": "digma-ai (https://github.com/digma-ai)",
"homepage": "https://github.com/digma-ai/jaeger-mcp",
"repository": "digma-ai/jaeger-mcp",
"license": "MIT",
"keywords": [
"mcp-server",
"jaeger",
"ai",
"llm",
"tracing",
"monitoring",
"open-telemetry"
],
"scripts": {
"build": "npm run protos && tsc",
"protos": " npm run protos:generate",
"protos:generate": "node ./scripts/generate-protos.js",
"start": "ts-node ./src/index.ts",
"watch": "tsc --watch",
"inspector": "npm run build && chmod 755 './dist/index.js' && npx @modelcontextprotocol/inspector dist/index.js --debug",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:check": "prettier --config .prettierrc.json --check ./src/*.ts ./src/**/*.ts ./src/**/**/*.ts ./src/**/**/**/*.ts",
"lint:format": "prettier --config .prettierrc.json --write ./src/*.ts ./src/**/*.ts ./src/**/**/*.ts ./src/**/**/**/*.ts",
"release:patch": "release-it --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks --npm.publishArgs=\"--access public\"",
"release:minor": "release-it minor --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks --npm.publishArgs=\"--access public\"",
"release:major": "release-it major --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks --npm.publishArgs=\"--access public\""
},
"files": [
"dist/",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^18.19.87",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.26.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.5.3",
"protobufjs-cli": "1.1.3",
"release-it": "^17.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.3",
"@modelcontextprotocol/sdk": "^1.11.0",
"axios": "^1.9.0",
"chalk": "^4.1.2",
"protobufjs": "^7.3.0"
}
}