-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "@local/mcp-uisp-server",
"version": "1.0.0",
"description": "MCP server for UISP CRM/NMS integration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"test": "npm run build && tsx test.ts",
"test:interactive": "npm run build && tsx src/test-client.ts",
"test:tool": "npm run build && tsx test.ts -- --tool",
"test:list": "npm run build && tsx test.ts -- --list",
"test:scenario": "npm run build && tsx test.ts -- --scenario",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"keywords": [
"mcp",
"uisp",
"crm",
"nms",
"isp"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"axios": "^1.7.2",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"https": "^1.0.0",
"node-cache": "^5.1.2",
"p-queue": "^8.0.1",
"winston": "^3.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"esbuild-register": "^3.6.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.2.2",
"tsx": "^4.21.0",
"typescript": "^5.5.3"
}
}