UNPKG

@logtape/cloudwatch-logs

Version:

AWS CloudWatch Logs sink for LogTape

74 lines 1.9 kB
{ "name": "@logtape/cloudwatch-logs", "version": "2.2.4", "description": "AWS CloudWatch Logs sink for LogTape", "keywords": [ "logging", "log", "logger", "aws", "cloudwatch", "cloudwatch-logs", "sink" ], "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": "packages/cloudwatch-logs/" }, "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": { "import": "./dist/mod.d.ts", "require": "./dist/mod.d.cts" } }, "./package.json": "./package.json" }, "sideEffects": false, "files": [ "dist/" ], "peerDependencies": { "@logtape/logtape": "^2.2.4" }, "dependencies": { "@aws-sdk/client-cloudwatch-logs": "^3.0.0" }, "devDependencies": { "@alinea/suite": "^0.6.3", "@david/which-runtime": "npm:@jsr/david__which-runtime@^0.2.1", "@dotenvx/dotenvx": "^1.44.2", "@std/assert": "npm:@jsr/std__assert@^1.0.13", "aws-sdk-client-mock": "^4.0.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 --timeout=10000", "test:deno": "deno test --allow-read --allow-net --allow-sys --allow-env", "test-all": "tsdown && node --experimental-transform-types --test && bun test && deno test" } }