alfred-logger-sdk
Version:
Production-ready data collection SDK for feeding structured events to LLM Data Agents with auto-capture capabilities
66 lines • 1.55 kB
JSON
{
"name": "alfred-logger-sdk",
"version": "2.0.0",
"description": "Production-ready data collection SDK for feeding structured events to LLM Data Agents with auto-capture capabilities",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "echo \"Linting not configured\"",
"typecheck": "echo \"Typecheck not configured\"",
"prepublishOnly": "echo \"Skipping tests for publish\"",
"prepare": "echo \"Skipping tests for prepare\""
},
"keywords": [
"data-collection",
"llm",
"analytics",
"events",
"agent",
"telemetry",
"logging",
"http-interceptor",
"auto-capture",
"observability",
"tracing",
"monitoring"
],
"author": {
"name": "Prerit Srivastava",
"email": "pr3rit@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prerit-skeps/alfred-logger-sdk.git"
},
"bugs": {
"url": "https://github.com/prerit-skeps/alfred-logger-sdk/issues"
},
"homepage": "https://github.com/prerit-skeps/alfred-logger-sdk#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"lib/",
"index.js",
"README.md",
"SECURITY.md",
"CHANGELOG.md"
],
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"lib/**/*.js",
"index.js"
]
}
}