UNPKG

autotel-cloudflare

Version:

The #1 OpenTelemetry package for Cloudflare Workers - complete bindings coverage, native CF OTel integration, advanced sampling

127 lines 3.22 kB
{ "name": "autotel-cloudflare", "version": "15.0.0", "description": "The #1 OpenTelemetry package for Cloudflare Workers - complete bindings coverage, native CF OTel integration, advanced sampling", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./bindings": { "types": "./dist/bindings.d.ts", "import": "./dist/bindings.js" }, "./handlers": { "types": "./dist/handlers.d.ts", "import": "./dist/handlers.js" }, "./sampling": { "types": "./dist/sampling.d.ts", "import": "./dist/sampling.js" }, "./events": { "types": "./dist/events.d.ts", "import": "./dist/events.js" }, "./logger": { "types": "./dist/logger.d.ts", "import": "./dist/logger.js" }, "./testing": { "types": "./dist/testing.d.ts", "import": "./dist/testing.js" }, "./actors": { "types": "./dist/actors.d.ts", "import": "./dist/actors.js" }, "./agents": { "types": "./dist/agents.d.ts", "import": "./dist/agents.js" }, "./native": { "types": "./dist/native.d.ts", "import": "./dist/native.js" }, "./parse-error": { "types": "./dist/parse-error.d.ts", "import": "./dist/parse-error.js" } }, "files": [ "dist", "README.md", "LICENSE", "NOTICE" ], "keywords": [ "opentelemetry", "otel", "cloudflare-workers", "cloudflare", "workers", "observability", "tracing", "bindings", "kv", "r2", "d1", "durable-objects", "workers-ai" ], "author": "Jag Reehal <jag@jagreehal.com> (https://jagreehal.com)", "license": "Apache-2.0", "dependencies": { "@opentelemetry/api": "^1.9.1", "@opentelemetry/resources": "^2.11.0" }, "peerDependencies": { "@cloudflare/workers-types": "^5.20260728.1", "autotel-edge": "5.1.1", "autotel-genai": "0.12.0" }, "peerDependenciesMeta": { "autotel-edge": { "optional": false }, "autotel-genai": { "optional": true } }, "devDependencies": { "@cloudflare/workers-types": "^5.20260728.1", "@opentelemetry/context-async-hooks": "^2.11.0", "@types/node": "^26.1.2", "autotel-edge": "5.1.1", "autotel-genai": "0.12.0", "rimraf": "^6.1.3", "tsdown": "^0.22.14", "typescript": "^6.0.3", "vitest": "^4.1.10", "vitest-mock-extended": "^5.1.0" }, "repository": { "type": "git", "url": "https://github.com/jagreehal/autotel", "directory": "packages/autotel-cloudflare" }, "bugs": { "url": "https://github.com/jagreehal/autotel/issues" }, "homepage": "https://github.com/jagreehal/autotel/tree/main/packages/autotel-cloudflare#readme", "scripts": { "build": "tsdown", "dev": "tsdown --watch", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "type-check": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "test:integration": "vitest run --config vitest.integration.config.ts", "clean": "rimraf dist" } }