diff --git a/package-lock.json b/package-lock.json index 7a874d8..08c8d65 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "time2fa", - "version": "1.4.0", + "version": "1.4.1", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 7fc8ce9..e50b9d3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "time2fa", "type": "module", - "version": "1.4.0", + "version": "1.4.1", "description": "NodeJS OTP implementation", "author": "@MarcAndreG", "license": "MIT", @@ -14,9 +14,14 @@ "sideEffects": false, "exports": { ".": { - "types": "./dist/index.d.ts", - "require": "./dist/index.cjs", - "import": "./dist/index.mjs" + "require": { + "types": "./dist/index.d.cts", + "default": "./dist/index.cjs" + }, + "import": { + "types": "./dist/index.d.mts", + "default": "./dist/index.mjs" + } } }, "main": "./dist/index.mjs",