From 7644da42f6af096faf81d777e3f80d226915c682 Mon Sep 17 00:00:00 2001 From: Moreno Feltscher Date: Thu, 12 Feb 2026 15:21:58 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20fix=20less=20shit=20=F0=9F=92=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6d986c8..2f4de8d 100644 --- a/package.json +++ b/package.json @@ -6,18 +6,22 @@ "source": "./src/index.ts", "main": "./dist/index.js", "types": "./dist/index.d.ts", + "files": [ + "dist/**/*", + "src/**/*" + ], "exports": { ".": { "types": "./dist/index.d.ts", - "import": "./dist/index.js" + "default": "./dist/index.js" }, "./redis": { "types": "./dist/cache-tags-redis.d.ts", - "import": "./dist/cache-tags-redis.js" + "default": "./dist/cache-tags-redis.js" }, "./postgres": { "types": "./dist/cache-tags.d.ts", - "import": "./dist/cache-tags.js" + "default": "./dist/cache-tags.js" } }, "scripts": {