-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "@runframe/mcp-server",
"version": "0.1.15",
"description": "MCP server for Runframe incident management — any agent, any IDE, one system of record",
"license": "MIT",
"author": "Runframe (https://runframe.io)",
"type": "module",
"bin": {
"runframe-mcp-server": "dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/__tests__"
],
"mcpName": "io.github.runframe/runframe-mcp-server",
"keywords": [
"mcp",
"mcp-server",
"incident-management",
"oncall",
"runframe",
"devops",
"sre",
"model-context-protocol"
],
"homepage": "https://runframe.io",
"repository": {
"type": "git",
"url": "git+https://github.com/runframe/runframe-mcp-server.git"
},
"bugs": {
"url": "https://github.com/runframe/runframe-mcp-server/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"type-check": "tsc --noEmit",
"pretest": "tsc",
"test": "node --test dist/__tests__/server.test.js dist/__tests__/tools.test.js",
"test:http": "node --test --test-force-exit dist/__tests__/http-security.test.js",
"test:all": "npm test && npm run test:http",
"lint": "eslint src/",
"prepublishOnly": "npm run lint && npm run build && npm run test:all"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"eslint": "^10.2.0",
"typescript": "^5.2.0",
"typescript-eslint": "^8.58.0"
},
"engines": {
"node": ">=20"
}
}