@logtape/pretty
Version:
Beautiful text formatter for LogTape—perfect for local development
36 lines (35 loc) • 609 B
JSON
{
"name": "@logtape/pretty",
"version": "1.0.0",
"license": "MIT",
"exports": "./mod.ts",
"exclude": [
"dist/",
"coverage/",
"npm/",
".dnt-import-map.json"
],
"tasks": {
"build": "pnpm build",
"test": "deno test",
"test:node": {
"dependencies": [
"build"
],
"command": "node --experimental-transform-types --test"
},
"test:bun": {
"dependencies": [
"build"
],
"command": "bun test"
},
"test-all": {
"dependencies": [
"test",
"test:node",
"test:bun"
]
}
}
}