@logtape/file
Version:
File sink and rotating file sink for LogTape
71 lines • 1.88 kB
JSON
{
"name": "@logtape/file",
"version": "0.12.0",
"description": "File sink and rotating file sink for LogTape",
"keywords": [
"logging",
"log",
"logger",
"file",
"sink",
"rotating"
],
"license": "MIT",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"homepage": "https://logtape.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/dahlia/logtape.git",
"directory": "file/"
},
"bugs": {
"url": "https://github.com/dahlia/logtape/issues"
},
"funding": [
"https://github.com/sponsors/dahlia"
],
"type": "module",
"module": "./dist/mod.js",
"main": "./dist/mod.cjs",
"types": "./dist/mod.d.ts",
"exports": {
".": {
"import": "./dist/mod.js",
"require": "./dist/mod.cjs",
"types": "./dist/mod.d.ts"
},
"./package.json": "./package.json"
},
"imports": {
"#filesink": {
"bun": "./dist/filesink.node.js",
"deno": "./dist/filesink.deno.js",
"import": "./dist/filesink.node.js",
"require": "./dist/filesink.node.cjs",
"types": "./dist/filesink.node.d.ts"
}
},
"peerDependencies": {
"@logtape/logtape": "0.12.0"
},
"devDependencies": {
"@alinea/suite": "^0.6.3",
"@david/which-runtime": "npm:@jsr/david__which-runtime@^0.2.1",
"@std/assert": "npm:@jsr/std__assert@^1.0.13",
"@std/path": "npm:@jsr/std__path@^1.1.0",
"tsdown": "^0.12.7",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsdown",
"prepublish": "tsdown",
"test": "tsdown && node --experimental-transform-types --test",
"test:bun": "tsdown && bun test",
"test:deno": "deno test --allow-read --allow-write --allow-env=TEMP,TMP,TMPDIR",
"test-all": "tsdown && node --experimental-transform-types --test && bun test && deno test"
}
}