UNPKG

kliedz

Version:

Dead-simple, stateless logging utility for JavaScript and TypeScript. Pure functions. No dependencies. Just log.

59 lines (58 loc) 1.29 kB
{ "name": "kliedz", "version": "2.0.0", "description": "Dead-simple, stateless logging utility for JavaScript and TypeScript. Pure functions. No dependencies. Just log.", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/bodrovis/kliedz.git" }, "keywords": [ "logger", "logging", "log-level", "stateless", "functional", "typescript", "javascript", "console", "minimal", "lightweight", "pure", "no-dependencies" ], "type": "module", "scripts": { "build": "tsup", "test": "vitest run", "test:watch": "vitest watch", "lint": "npx @biomejs/biome check ./", "lint:fix": "npx @biomejs/biome check --write ./", "lint:fix:unsafe": "npx @biomejs/biome check --write --unsafe ./" }, "devDependencies": { "@biomejs/biome": "^2.0.6", "@types/node": "^25.0.3", "@vitest/coverage-v8": "^4.0.6", "tsup": "^8.3.0", "typescript": "^5.8.2", "vitest": "^4.0.6" }, "bugs": { "url": "https://github.com/bodrovis/kliedz/issues" }, "homepage": "https://github.com/bodrovis/kliedz", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "directories": { "lib": "./src", "test": "./test" }, "author": "Ilya Krukowski", "publishConfig": { "access": "public" }, "engines": { "node": ">=20" } }