From 952083001d3b1f858fd5102ba06a7121661bb15e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Uhl=C3=AD=C5=99?= Date: Thu, 5 May 2022 14:23:55 +0200 Subject: [PATCH] fix: correct bin endpoint --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d1cfdfa..c9011b2 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,9 @@ "url": "https://github.com/ethersphere/bee-factory.git" }, "bin": { - "bee-factory": "./dist/index.js" + "bee-factory": "./dist/src/index.js" }, - "main": "dist/index.js", + "main": "dist/src/index.js", "files": [ "dist" ],