From 4c667f75f433e2804c15f786efe5ad5210052fff Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Tue, 8 Apr 2025 17:48:43 +0200 Subject: [PATCH] chore(package): export utils --- package.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package.json b/package.json index 5032c488..c7e409bc 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,10 @@ "./runtime/*": "./dist/runtime/*", "./components/*": "./dist/runtime/components/*", "./composables/*": "./dist/runtime/composables/*", + "./utils": { + "types": "./dist/runtime/utils/index.d.ts", + "import": "./dist/runtime/utils/index.js" + }, "./utils/*": { "types": "./dist/runtime/utils/*.d.ts", "import": "./dist/runtime/utils/*.js" @@ -62,6 +66,9 @@ "composables/*": [ "./dist/runtime/composables/*" ], + "utils": [ + "./dist/runtime/utils/index.d.ts" + ], "utils/*": [ "./dist/runtime/utils/*.d.ts" ],