-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.68 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.68 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
{
"name": "@rollbar/mcp-server",
"version": "0.5.0",
"description": "Model Context Protocol server for Rollbar",
"repository": {
"type": "git",
"url": "git+https://github.com/rollbar/rollbar-mcp-server.git"
},
"main": "build/index.js",
"type": "module",
"bin": {
"rollbar-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"lint": "npx eslint src --ext .ts,.tsx",
"lint:fix": "npx eslint src --ext .ts,.tsx --fix",
"format": "prettier --check src",
"format:write": "prettier --write src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "bash tests/e2e/test-npx-install.sh && bash tests/e2e/test-get-item-details.sh",
"prepublishOnly": "npm run build && npm test"
},
"files": [
"build",
"src",
"README.md",
"LICENSE"
],
"keywords": [
"rollbar",
"mcp",
"error-monitoring",
"rollbar-mcp-server"
],
"author": "Rollbar, Inc.",
"license": "MIT",
"engines": {
"node": ">=20"
},
"overrides": {
"glob": "^10.5.0",
"js-yaml": "^4.1.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^17.2.1",
"rollbar": "^3.0.0-alpha.6",
"undici": "^7.25.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@modelcontextprotocol/inspector": "0.16.6",
"@types/node": "^24.1.0",
"@vitest/coverage-v8": "^4.1.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vitest": "^4.1.1"
}
}