2026-01-21 11:37:37 -08:00
|
|
|
{
|
|
|
|
|
"name": "@lilith/mcp-session-analyzer",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "MCP server for ML-powered analysis of Claude Code session transcripts",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"bin": {
|
|
|
|
|
"mcp-session-analyzer": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"README.md"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
2026-01-21 12:36:35 -08:00
|
|
|
"build": "tsup",
|
2026-01-21 11:37:37 -08:00
|
|
|
"postbuild": "chmod +x dist/index.js",
|
|
|
|
|
"watch": "tsc --watch",
|
|
|
|
|
"dev": "tsc --watch",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest",
|
2026-01-21 12:36:35 -08:00
|
|
|
"prepublishOnly": "npm run build",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"clean": "rm -rf dist"
|
2026-01-21 11:37:37 -08:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"mcp",
|
|
|
|
|
"model-context-protocol",
|
|
|
|
|
"claude-code",
|
|
|
|
|
"session-analysis",
|
|
|
|
|
"transcript",
|
|
|
|
|
"ml",
|
|
|
|
|
"summarization"
|
|
|
|
|
],
|
|
|
|
|
"author": "Lilith",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@lilith/mcp-common": "workspace:*",
|
2026-02-07 01:35:40 -08:00
|
|
|
"@lilith/ml-provider-clients": "^1.0.37",
|
2026-01-21 11:37:37 -08:00
|
|
|
"@modelcontextprotocol/sdk": "^1.25.2"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-22 14:08:31 -08:00
|
|
|
"@lilith/configs": "workspace:*",
|
2026-01-21 11:37:37 -08:00
|
|
|
"@types/node": "^20.19.28",
|
2026-01-21 15:31:00 -08:00
|
|
|
"tsup": "^8.5.1",
|
2026-01-21 11:37:37 -08:00
|
|
|
"typescript": "^5.9.3",
|
2026-01-21 15:31:00 -08:00
|
|
|
"vitest": "^2.1.9"
|
2026-01-21 11:37:37 -08:00
|
|
|
},
|
|
|
|
|
"_": {
|
|
|
|
|
"registry": "forgejo",
|
|
|
|
|
"publish": true,
|
|
|
|
|
"build": true
|
|
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
2026-06-11 01:22:10 -07:00
|
|
|
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
|
2026-01-21 11:37:37 -08:00
|
|
|
}
|
|
|
|
|
}
|