-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 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
{
"name": "mcp-server-logs-sieve",
"version": "0.1.3",
"description": "MCP server for filtering and analyzing cloud platform logs",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server-logs-sieve": "./bin/mcp-server-logs-sieve.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"logs",
"gcp",
"cloud-logging",
"debugging",
"ai-assistant"
],
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.0.0",
"@azure/identity": "^4.13.0",
"@azure/monitor-query-logs": "^1.0.0",
"@elastic/elasticsearch": "^9.3.4",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"@google-cloud/logging": "^11.0.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"axios": "^1.13.6",
"consola": "^3.4.2",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20.0.0"
}
}