-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.76 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "elastic-security-mcp-app",
"version": "1.0.7",
"description": "MCP App server for Elastic Security — interactive blue-team UIs for alert triage, case management, detection rules, and threat hunting",
"type": "module",
"license": "Elastic-2.0",
"main": "dist/main.js",
"bin": {
"elastic-security-mcp-app": "./dist/main.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/elastic/example-mcp-app-security.git"
},
"keywords": [
"mcp",
"mcp-server",
"elastic",
"elasticsearch",
"kibana",
"security",
"siem",
"soc",
"alerts",
"detection",
"threat-hunting"
],
"scripts": {
"build": "tsc --noEmit && tsc -p tsconfig.server.json && node scripts/build-views.js",
"build:views": "node scripts/build-views.js",
"build:server": "tsc -p tsconfig.server.json",
"build:standalone": "node scripts/build-standalone.js",
"standalone": "node scripts/build-standalone.js && node dist/standalone/server.js",
"standalone:dev": "tsx standalone/server.ts",
"start": "node dist/main.js",
"start:stdio": "node dist/main.js --stdio",
"dev": "concurrently --raw \"node scripts/build-views.js --watch\" \"tsx watch main.ts\"",
"typecheck": "tsc --noEmit",
"test:permissions": "tsx scripts/test-permissions/runner.ts",
"test:permissions:serverless": "tsx scripts/test-permissions/runner.ts --mode serverless --role serverless",
"test:permissions:serverless:all": "tsx scripts/test-permissions/runner.ts --mode serverless --role serverless_all",
"skills:zip": "bash scripts/build-skill-zips.sh",
"mcpb:pack": "bash scripts/build-mcpb.sh",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"prepare": "husky",
"version": "node -e \"const m=JSON.parse(require('fs').readFileSync('manifest.json','utf8'));m.version=require('./package.json').version;require('fs').writeFileSync('manifest.json',JSON.stringify(m,null,2)+'\\n')\" && git add manifest.json"
},
"lint-staged": {
"*.{ts,tsx,js,mjs}": [
"eslint --fix"
]
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@elastic/ebt": "^1.4.1",
"@elastic/highlightjs-esql": "^1.2.3",
"@elastic/monaco-esql": "^3.3.1",
"@modelcontextprotocol/ext-apps": "^1.3.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@monaco-editor/react": "^4.7.0",
"axios": "^1.16.0",
"classnames": "^2.5.1",
"cors": "^2.8.6",
"d3-drag": "^3.0.0",
"d3-force": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"highlight.js": "^11.11.1",
"marked": "^17.0.5",
"monaco-editor": "^0.55.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/cors": "^2.8.19",
"@types/d3-drag": "^3.0.7",
"@types/d3-force": "^3.0.10",
"@types/d3-selection": "^3.0.11",
"@types/d3-zoom": "^3.0.8",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.2",
"vite-plugin-singlefile": "^2.3.2",
"vitest": "^4.1.5"
}
}