package.json•1.39 kB
{
"name": "simple-loki-mcp",
"version": "0.0.9",
"description": "MCP server for querying Loki logs via logcli",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/src/index.js",
"start": "node dist/src/index.js",
"pretest": "tsc -p tsconfig.test.json --noEmit",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "Hobart Kim <ghrud92@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ghrud92/simple-loki-mcp.git"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE.md"
],
"bin": {
"simple-loki-mcp": "dist/src/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"axios": "^1.8.4",
"js-yaml": "^4.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}