UNPKG

@superbuilders/slog

Version:

Simple structured logging library

51 lines (50 loc) 1.28 kB
{ "name": "@superbuilders/slog", "version": "4.0.0", "description": "Simple structured logging library", "module": "dist/index.js", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "files": [ "dist" ], "scripts": { "build": "bun build src/index.ts --outdir dist --target node --minify --sourcemap && tsc --emitDeclarationOnly --outDir dist", "typecheck": "tsc --noEmit && biome check --write .", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage", "test:performance": "bun test src/performance.test.ts", "test:buffer": "bun test src/buffer.test.ts", "test:examples": "bun test test/example.test.ts", "test:ci": "bun test --reporter=junit --reporter-outfile=./test-results.xml", "prepublishOnly": "bun run build" }, "keywords": [ "logging", "structured-logging", "performance", "slog", "high-performance" ], "author": "Bjorn Pagen", "license": "0BSD", "repository": { "type": "git", "url": "https://github.com/superbuilders/slog" }, "devDependencies": { "@types/bun": "^1.2.15", "@types/node": "^22.15.29" }, "peerDependencies": { "typescript": "^5.8.3" }, "engines": { "node": ">=18" }, "dependencies": { "@biomejs/biome": "^2.0.0-beta.5" } }