Spaces:
Sleeping
Sleeping
File size: 1,190 Bytes
116524e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | {
"name": "@kayba_ai/tracing",
"version": "0.10.0",
"description": "Kayba tracing SDK — instrument your AI agents and send traces to Kayba",
"license": "MIT",
"author": "Kayba.ai <hello@kayba.ai>",
"repository": {
"type": "git",
"url": "https://github.com/kayba-ai/agentic-context-engine",
"directory": "sdk/typescript"
},
"homepage": "https://kayba.ai",
"keywords": [
"kayba",
"tracing",
"mlflow",
"observability",
"ai",
"agents"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"mlflow-tracing": "^0.1.0"
},
"devDependencies": {
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18"
}
}
|