Files
hive/package.json
T
Timothy 689db5ab33
Release / Create Release (push) Waiting to run
Release / Publish Docker Images (push) Blocked by required conditions
feat: initial open-source release
Beeline - Open-source LLM observability and control platform

Features:
- Real-time agent monitoring dashboard
- LLM metrics and analytics (TimescaleDB)
- Cost tracking and budget controls
- WebSocket event streaming
- MCP (Model Context Protocol) server

Apache 2.0 License
2026-01-13 20:13:05 -08:00

37 lines
920 B
JSON

{
"name": "beeline",
"version": "0.1.0",
"private": true,
"description": "Beeline - AI agent observability and control platform",
"repository": {
"type": "git",
"url": "https://github.com/adenhq/beeline.git"
},
"license": "Apache-2.0",
"workspaces": [
"honeycomb",
"hive"
],
"scripts": {
"dev": "docker compose up",
"dev:build": "docker compose up --build",
"build": "npm run build --workspaces",
"lint": "npm run lint --workspaces",
"test": "npm run test --workspaces",
"setup": "bash scripts/setup.sh",
"generate:env": "npx tsx scripts/generate-env.ts",
"clean": "npm run clean --workspaces && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"yaml": "^2.3.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"packageManager": "npm@10.2.0"
}