From 26ed9bce78ee818271e351f3e9f1f9fa34c471b0 Mon Sep 17 00:00:00 2001 From: Andrey Polischuk Date: Fri, 22 Mar 2024 18:34:38 +0300 Subject: [PATCH] fix(lhci-report): fix bin --- packages/lhci-report/package.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/lhci-report/package.json b/packages/lhci-report/package.json index 341e009..9753bc9 100644 --- a/packages/lhci-report/package.json +++ b/packages/lhci-report/package.json @@ -1,18 +1,20 @@ { "name": "@rambler-tech/lhci-report", "version": "0.1.0", - "cli": "dist/cli.js", + "bin": { + "lhci-report": "dist/cli.js" + }, "types": "dist/cli.d.ts", "license": "MIT", "sideEffects": false, "publishConfig": { "access": "public" }, + "dependencies": { + "chalk": "^4" + }, "devDependencies": { "@types/chalk": "^0.4.31", "@types/node": "^20.11.30" - }, - "dependencies": { - "chalk": "^4" } }