package.json•1.39 kB
{
"name": "@hiyorineko/mcp-rollbar-server",
"version": "1.1.5",
"description": "MCP server for Rollbar API integration",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"mcp-rollbar-server": "dist/src/index.js"
},
"files": [
"dist/src",
"dist/types.d.ts",
"dist/types.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hiyorineko/mcp-rollbar-server.git"
},
"bugs": {
"url": "https://github.com/hiyorineko/mcp-rollbar-server/issues"
},
"homepage": "https://github.com/hiyorineko/mcp-rollbar-server#readme",
"scripts": {
"build": "tsc && shx chmod +x dist/src/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/src/index.js",
"start:sse": "node dist/src/sse.js",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"axios": "^1.8.4",
"cors": "^2.8.5",
"express": "^4.18.2"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.6.2"
}
}