From 6137aee428267ffdd1e1b16bc328876355aa080d Mon Sep 17 00:00:00 2001 From: Rubilmax Date: Wed, 12 Oct 2022 10:41:24 +0200 Subject: [PATCH] fix(import): remove lib from import path --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e8c79cd..4b8b98e 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,9 @@ "name": "ethers-maths", "version": "1.0.0", "description": "➗ Useful ethers-based math libraries to ease the journey through off-chain fixed-point arithmetics", - "main": "lib/src/index.js", + "main": "lib/index.js", "files": [ - "lib/**/*" + "lib/*" ], "scripts": { "build": "tsc",