UNPKG

@tomjs/logger

Version:
54 lines 1.08 kB
{ "name": "@tomjs/logger", "version": "3.0.0", "description": "logger for `node.js`", "author": { "name": "Tom Gao", "email": "tom@tomgao.cc" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/tomjs/utils.git", "directory": "packages/logger" }, "keywords": [ "node", "utils" ], "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=16" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "dependencies": { "dayjs": "^1.11.13", "is-unicode-supported": "^2.1.0", "picocolors": "^1.1.1", "strip-ansi": "^6.0.1" }, "scripts": { "build": "tsdown", "print": "tsx ./scripts/print.ts" } }