-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@wyre-technology/avanan-mcp",
"version": "1.0.0",
"description": "MCP server for Checkpoint Harmony Email & Collaboration (Avanan) - email security, anti-phishing, anti-malware, and threat detection API integration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"checkpoint-avanan-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:ui": "vite build && node scripts/embed-ui.mjs",
"dev": "tsc --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wyre-technology/avanan-mcp.git"
},
"keywords": [
"mcp",
"claude",
"checkpoint",
"avanan",
"harmony",
"email-security",
"anti-phishing",
"anti-malware",
"threat-detection",
"msp"
],
"author": "Wyre Technology",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wyre-technology/avanan-mcp/issues"
},
"homepage": "https://github.com/wyre-technology/avanan-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@modelcontextprotocol/ext-apps": "^1.7.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^26.0.0",
"eslint": "^9.39.4",
"globals": "^17.6.0",
"semantic-release": "^25.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vite": "^6.4.3",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=20.0.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github"
]
}
}