forked from martinklimek/smartbear-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.42 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
{
"name": "@smartbear/mcp",
"version": "0.2.2",
"description": "MCP server for interacting SmartBear Products",
"keywords": [
"smartbear",
"mcp",
"insight-hub",
"reflect",
"api-hub"
],
"homepage": "https://developer.smartbear.com/smartbear-mcp",
"repository": {
"type": "git",
"url": "git@github.com:SmartBear/smartbear-mcp.git"
},
"license": "MIT",
"type": "module",
"bin": {
"mcp": "dist/index.js"
},
"files": [
"dist",
"assets",
"**/README.md"
],
"config": {
"mcpServerName": "SmartBear MCP Server"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:coverage:ci": "vitest --coverage --reporter=verbose",
"test:run": "vitest run",
"coverage:check": "vitest --coverage --reporter=verbose --config vitest.config.coverage.ts"
},
"dependencies": {
"@bugsnag/js": "^8.2.0",
"@modelcontextprotocol/sdk": "^1.15.0",
"node-cache": "^5.1.2",
"zod": "^3"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/node": "^22",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"shx": "^0.3.4",
"typescript": "^5.6.2",
"typescript-eslint": "^8.34.1",
"vitest": "^3.2.4"
}
}