-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 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
{
"name": "@chkp/https-inspection-mcp",
"version": "1.3.0",
"description": "HTTPS Inspection MCP server for Check Point products",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"https-inspection-mcp": "./dist/index.js"
},
"engines": {
"node": ">=20.0.0"
},
"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"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"axios": "^1.13.5",
"commander": "^13.1.0",
"node-machine-id": "^1.1.12",
"zod": "^3.24.4"
},
"devDependencies": {
"@chkp/mcp-utils": "*",
"@chkp/quantum-infra": "*",
"@types/node": "^20.0.0",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/CheckPointSW/mcp-servers.git",
"directory": "packages/https-inspection"
},
"license": "MIT"
}