From 98df56147ee79a0c15db54e5d3c4d32a0d4613f5 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 15 Jul 2023 08:30:58 -0400 Subject: [PATCH] fix: needs to be an es export --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index c26996e..53074fa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,9 +3,9 @@ import info from "./info.js"; import list from "./list.js"; import type from "./type.js"; -module.exports = { +export default { 'desc': desc, 'info': info, 'list': list, 'type': type, -} +};