Skip to main content
Home
This release is 46 versions behind 0.3.104 — the latest version of @paimaexample/collector. Jump to latest
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
58%
Published
2 months ago (0.3.50)
Package root>deno.json
{ "name": "@paimaexample/collector", "version": "0.3.50", "license": "MIT", "exports": { ".": "./src/mod.ts", "./start": "./src/start.ts" }, "tasks": { // permissions info: // - temporal used for printing metrics // - allow-env is used by `chalk` to know which color scheme to use // - allow-read is used by tslog to read the CWD for logging (https://github.com/fullstack-build/tslog/issues/309) // - allow-net is used to run the collector server // - allow-sys is required to run servers on localhost "start": "deno run --unstable-temporal --allow-env --allow-read --allow-net --allow-sys src/mod.ts", "wait": "wait-on tcp:4318" }, "imports": { "fastify": "npm:fastify@^5.4.0", "@sinclair/typebox": "npm:@sinclair/typebox@^0.34.30", "@opentelemetry/otlp-transformer": "npm:@opentelemetry/otlp-transformer@0.56.0" }, "lint": { "rules": { "exclude": [ // routes really could receive any data "no-explicit-any", // server endpoints should be async even if it's not used "require-await" ] } } }