From e3a3492c8762d5de0020eab0860d3df97efcb9c6 Mon Sep 17 00:00:00 2001 From: Srinivas Gowda Date: Mon, 20 Nov 2023 01:44:26 +0530 Subject: [PATCH] Update package.json version and main file --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index cbfd9b4..d9dfc52 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "@solancer/two-way-map", - "version": "1.0.2", + "version": "1.0.3", "description": "A TypeScript library providing two-way mapping functionality with order preservation. It is ideal for scenarios requiring bidirectional lookups while maintaining the insertion order of elements.", "type": "module", - "main": "dist/index.js", - "module": "dist/index.mjs", + "main": "dist/index.cjs", + "module": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsup",