-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "@wyre-ai/knowbe4-mcp",
"version": "1.0.1",
"description": "MCP server for KnowBe4 — security awareness training, phishing simulation, and user risk management API integration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server-knowbe4": "./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",
"test:watch": "vitest",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WYRE-AI/knowbe4-mcp.git"
},
"keywords": [
"mcp",
"claude",
"knowbe4",
"security-awareness",
"phishing",
"training",
"msp"
],
"author": "Wyre Technology",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/WYRE-AI/knowbe4-mcp/issues"
},
"homepage": "https://github.com/WYRE-AI/knowbe4-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/ext-apps": "^1.7.5",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"@types/node": "^26.2.0",
"eslint": "^10.9.0",
"globals": "^17.11.0",
"semantic-release": "^25.0.9",
"typescript": "^5.3.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.2",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.11"
},
"engines": {
"node": ">=20.0.0"
},
"allowScripts": {
"esbuild@0.25.12": true
}
}