diff --git a/package-lock.json b/package-lock.json index 99caf74..3ca97de 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "linq-functional", - "version": "1.0.0", + "version": "1.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "linq-functional", - "version": "1.0.0", + "version": "1.0.2", "license": "ISC", "devDependencies": { "@vitest/coverage-c8": "^0.33.0", diff --git a/package.json b/package.json index d4e51f6..aea18e7 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,18 @@ { "name": "linq-functional", "type": "module", - "version": "1.0.1", + "version": "1.0.2", "description": "A functional adaptation of C#'s LINQ, for building type safe, declarative queries.", "exports": { ".": { - "import": "./dist/index.js", - "require": "./dist/index.cjs" + "import": { + "default": "./dist/index.js", + "types": "./dist/index.d.ts" + }, + "require": { + "default": "./dist/index.cjs", + "types": "./dist/index.d.cts" + } } }, "types": "./dist/index.d.ts",