-
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) · 1.58 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.58 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": "@calltelemetry/cisco-ris-mcp",
"version": "1.0.0",
"description": "MCP server for Cisco CUCM RIS (Real-time Information Service) and PerfMon APIs",
"type": "module",
"main": "build/index.js",
"bin": "build/index.js",
"files": [
"build/**/*"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.12.0",
"scripts": {
"build": "vite build && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "vite build --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"test": "vitest run",
"test:mcp": "vitest run test/mcp-conformance.test.ts",
"validate": "yarn typecheck && yarn lint && yarn test",
"prepack": "yarn build && yarn test:mcp",
"semantic-release": "semantic-release"
},
"keywords": [
"mcp",
"cisco",
"cucm",
"ris",
"risport",
"perfmon",
"realtime",
"monitoring"
],
"author": "CallTelemetry",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"fast-xml-parser": "^4.5.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.39.4",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^7.3.1",
"vitest": "^4.1.0"
}
}