Skip to main content
This release is 4 versions behind 0.7.1 — the latest version of @logtape/logtape. Jump to latest

Built and signed on GitHub Actions

Simple logging library with zero dependencies for Deno/Node.js/Bun/browsers

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
2 months ago (0.6.2)
Package root>deno.json
{ "name": "@logtape/logtape", "version": "0.6.2", "license": "MIT", "exports": "./logtape/mod.ts", "imports": { "@deno/dnt": "jsr:@deno/dnt@^0.41.1", "@std/assert": "jsr:@std/assert@^0.222.1", "@std/async": "jsr:@std/async@^0.222.1", "@std/fs": "jsr:@std/fs@^0.223.0", "@std/path": "jsr:@std/path@^1.0.2", "@std/testing": "jsr:@std/testing@^0.222.1", "consolemock": "npm:consolemock@^1.1.0", "which_runtime": "https://deno.land/x/which_runtime@0.2.0/mod.ts" }, "exclude": [ "*-venv/", "coverage/", "docs/", "npm/" ], "unstable": [ "fs" ], "lock": false, "tasks": { "check": "deno check **/*.ts && deno lint && deno fmt --check", "test": "deno test --allow-read --allow-write", "coverage": "rm -rf coverage && deno task test --coverage && deno coverage --html coverage", "dnt": "deno run -A dnt.ts", "test-all": "deno task test && deno task dnt && cd npm/ && bun run ./test_runner.js && cd ../", "hooks:install": "deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks", "hooks:pre-commit": "deno task check", "hooks:pre-push": "deno task test" } }