-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.64 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
{
"name": "@chkp/quantum-gw-connection-analysis-mcp",
"version": "1.4.4",
"description": "Model Context Protocol (MCP) server for Running Connection Analysis on a Check Point gateway.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run build:bundle && npx shx chmod +x ./dist/index.js && npx shx cp src/server-config.json dist/",
"build:bundle": "node ../../bundle-mcp.js",
"build:tsc": "npx tsc && npx shx chmod +x ./dist/index.js && npx shx cp src/server-config.json dist/",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepack": "node ../../scripts/strip-bundled-deps.js",
"postpack": "node ../../scripts/strip-bundled-deps.js restore"
},
"author": "Check Point Software Technologies",
"license": "MIT",
"dependencies": {
"@chkp/mcp-utils": "*",
"@chkp/quantum-gw-cli-base": "*",
"@chkp/quantum-infra": "*",
"@modelcontextprotocol/sdk": "^1.26.0",
"axios": "^1.13.5",
"commander": "^11.1.0",
"node-machine-id": "^1.1.12",
"zod": "^3.24.4"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^30.0.0",
"eslint": "^8.0.0",
"jest": "^30.2.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/CheckPointSW/mcp-servers.git",
"directory": "packages/gw-cli-connection-analysis"
},
"bin": {
"quantum-gw-connection-analysis-mcp": "dist/index.js"
}
}