diff --git a/README.md b/README.md index e655aac..00cb74f 100644 --- a/README.md +++ b/README.md @@ -14,19 +14,19 @@ A lightweight console and file logger with color-coded output and timestamped en ## Installation ```bash -npm install @creations.works/logger +npm install @creations/logger ``` Or with Bun: ```bash -bun add @creations.works/logger +bun add @creations/logger ``` ## Usage ```ts -import { logger } from "@creations.works/logger"; +import { logger } from "@creations/logger"; logger.info("This is an info message"); logger.warn("This is a warning", { breakLine: true }); diff --git a/package.json b/package.json index 745df23..b020074 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@creations.works/logger", - "version": "1.0.3", + "version": "1.0.2", "type": "module", "main": "./dist/index.js", "module": "./dist/index.mjs",