From d7ba9e1dfaa15889e57c86564dde952f8b53be00 Mon Sep 17 00:00:00 2001 From: aericio <16523741+Aericio@users.noreply.github.com> Date: Tue, 28 May 2024 17:12:34 -1000 Subject: [PATCH] fix(package.json): wrong export type for schema --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index cb8e4d4..a059a88 100644 --- a/package.json +++ b/package.json @@ -32,9 +32,9 @@ "types": "./dist/lib/database.d.ts", "default": "./dist/lib/database.js" }, - "./tables": { - "types": "./dist/lib/tables.d.ts", - "default": "./dist/lib/tables.js" + "./schema": { + "types": "./dist/lib/schema.d.ts", + "default": "./dist/lib/schema.js" }, "./types": { "types": "./dist/lib/types.d.ts",