UNPKG

@audit-llm/server

Version:

A server for auditing and logging LLM interactions, with improved message handling and robust MCP support

89 lines (88 loc) 2.88 kB
{ "name": "@audit-llm/server", "version": "1.1.13", "description": "A server for auditing and logging LLM interactions, with improved message handling and robust MCP support", "main": "dist/server.js", "type": "module", "bin": { "audit-llm-server": "./dist/server.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "start": "node -r dotenv/config --experimental-specifier-resolution=node dist/src/server.js", "start:mcp": "node -r dotenv/config --experimental-specifier-resolution=node dist/src/server.js --mcp", "dev": "ts-node-dev --respawn --transpile-only src/server.ts", "test:mcp": "node -r dotenv/config --experimental-specifier-resolution=node scripts/test-mcp.js", "test:http": "node -r dotenv/config --experimental-specifier-resolution=node scripts/test-http.js", "test": "npm run test:server && npm run test:all && npm run test:mcp-direct", "test:all": "node --experimental-specifier-resolution=node test/test-all.js", "test:server": "node --experimental-specifier-resolution=node test/test-server.js", "test:mcp-direct": "node --experimental-specifier-resolution=node test/test-mcp.js", "test:mcp-stability": "node --experimental-specifier-resolution=node test/test-mcp-stability.js", "simulate:claude": "node --experimental-specifier-resolution=node test/claude-desktop-simulator.js", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build" }, "publishConfig": { "access": "public" }, "keywords": [ "mcp", "llm", "audit", "logging", "ai", "claude", "cursor", "model-context-protocol", "ai-audit", "llm-logging" ], "author": "Sakhil Chawla", "repository": { "type": "git", "url": "git+https://github.com/sakhilchawla/audit-llm-decision.git" }, "bugs": { "url": "https://github.com/sakhilchawla/audit-llm-decision/issues" }, "homepage": "https://github.com/sakhilchawla/audit-llm-decision#readme", "license": "MIT", "engines": { "node": ">=16.0.0" }, "dependencies": { "@types/uuid": "^9.0.8", "compression": "^1.7.4", "cors": "^2.8.5", "dotenv": "^16.4.5", "express": "^4.18.3", "express-rate-limit": "^7.2.0", "helmet": "^7.1.0", "pg": "^8.11.3", "uuid": "^9.0.1", "node-fetch": "^3.3.2" }, "devDependencies": { "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/debug": "^4.1.12", "@types/express": "^4.17.21", "@types/jest": "^29.5.12", "@types/node": "^20.11.24", "@types/node-fetch": "^2.6.12", "@types/pg": "^8.11.2", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^8.57.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.3.3" } }