package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@deepseek-ai/dsh-session-telemetry-otel",
  3. "description": "OpenTelemetry backend for the DeepSeek Harness telemetry seam: hands captured session records to the OTel JS SDK's log pipeline",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./src/*": "./src/*",
  19. "./package.json": "./package.json"
  20. },
  21. "files": [
  22. "lib/index.js",
  23. "lib/invariant.js",
  24. "lib/types/**/*.d.ts"
  25. ],
  26. "license": "BSD-3-Clause",
  27. "dependencies": {
  28. "@opentelemetry/api": "^1.9.1",
  29. "@opentelemetry/api-logs": "^0.220.0",
  30. "@opentelemetry/exporter-logs-otlp-http": "^0.220.0",
  31. "@opentelemetry/otlp-exporter-base": "^0.220.0",
  32. "@opentelemetry/resources": "^2.9.0",
  33. "@opentelemetry/sdk-logs": "^0.220.0",
  34. "schemastery": "^3.18.0"
  35. },
  36. "peerDependencies": {
  37. "@deepseek-ai/dsh-brand": "^0.0.1",
  38. "@deepseek-ai/dsh-invariants": "^0.0.1",
  39. "@deepseek-ai/dsh-llm": "^0.0.1",
  40. "@deepseek-ai/dsh-paths": "^0.0.1",
  41. "@deepseek-ai/dsh-session": "^0.0.1",
  42. "@deepseek-ai/dsh-session-telemetry": "^0.0.1",
  43. "cordis": "^4.0.0-rc.7"
  44. },
  45. "devDependencies": {
  46. "@cordisjs/plugin-loader": "workspace:^",
  47. "@deepseek-ai/dsh-brand": "workspace:^",
  48. "@deepseek-ai/dsh-invariants": "workspace:^",
  49. "@deepseek-ai/dsh-llm": "workspace:^",
  50. "@deepseek-ai/dsh-paths": "workspace:^",
  51. "@deepseek-ai/dsh-session": "workspace:^",
  52. "@deepseek-ai/dsh-session-telemetry": "workspace:^",
  53. "cordis": "^4.0.0-rc.7"
  54. }
  55. }