UNPKG

@rasla/logify

Version:

A lightweight, flexible, and easy-to-use logging middleware for Elysia.js applications

75 lines (74 loc) 1.9 kB
{ "name": "@rasla/logify", "version": "5.2.2", "description": "A lightweight, flexible, and easy-to-use logging middleware for Elysia.js applications", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "LICENSE.md", "README.md" ], "scripts": { "start": "bun run main.ts", "typecheck": "tsc", "build:types": "tsc --emitDeclarationOnly", "build:js": "bun build ./src/index.ts --outdir=dist --target=node", "build": "bun run build:types && bun run build:js", "dev": "bun run --watch main.ts", "prepublishOnly": "bun run build", "format": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\"", "lint": "eslint \"src/**/*.ts\" --fix", "test": "bun test", "bundle": "tar -czf logify-elysia-v5.2.2.tar.gz dist/ package.json README.md LICENSE.md" }, "keywords": [ "elysia", "logger", "middleware", "logging", "bun", "typescript", "console-log", "file-log", "http-logger" ], "author": { "name": "0xRasla", "email": "programmer.rasla@gmail.com", "url": "https://github.com/0xRasla" }, "repository": { "type": "git", "url": "git+https://github.com/0xRasla/logify.git" }, "bugs": { "url": "https://github.com/0xRasla/logify/issues" }, "homepage": "https://github.com/0xRasla/logify#readme", "license": "MIT", "dependencies": { "chalk": "^5.6.2", "elysia": "^1.4.21" }, "devDependencies": { "@types/node": "^24.10.7", "@types/bun": "^1.3.5", "@typescript-eslint/eslint-plugin": "^8.53.0", "@typescript-eslint/parser": "^8.53.0", "eslint": "^9.39.2", "prettier": "^3.7.4", "typescript": "^5.9.3" }, "peerDependencies": { "elysia": ">=0.7.0" }, "engines": { "node": ">=16.0.0", "bun": ">=1.0.0" }, "publishConfig": { "access": "public" } }