-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "arkime-mcp",
"version": "1.0.0",
"description": "MCP server for Arkime - LLM-assisted network traffic investigations",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"arkime-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc && tsc-alias",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js"
},
"keywords": [
"mcp",
"arkime",
"network-forensics",
"security"
],
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.16.0"
}
}