From 39f181ee28852ed678688e64198227e766fbc530 Mon Sep 17 00:00:00 2001 From: Bryan Jonker <65776851+bryanjonker-illinois@users.noreply.github.com> Date: Fri, 23 Aug 2024 17:42:35 -0500 Subject: [PATCH] Update package.json --- package.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index daf9f7d..b7414f3 100644 --- a/package.json +++ b/package.json @@ -1,19 +1,27 @@ { "name": "@illinois-toolkit/ilw-card", - "description": "One paragraph description of the component.", + "description": "Illinois Toolkit: A card component that can be used as a container for grouping information, reminiscent of a physical note or playing card.", "repository": "github:web-illinois/ilw-card", "private": false, "version": "1.0.0-alpha.0", "type": "module", + "files": [ + "src/**", + "dist/**", + "builder/**" + ], "exports": { ".": { - "import": "./src/ilw-card.js" + "import": "./src/ilw-card.js", + "require": "./src/ilw-card.cjs", + "default": "./src/ilw-card.js" } }, "scripts": { "dev": "vite", "build": "vite build --config vite.build.config.js --emptyOutDir", - "preview": "vite preview" + "preview": "vite preview", + "prepack": "npm run build }, "dependencies": { "lit": "3.1.3" @@ -22,4 +30,4 @@ "vite": "^5.2.0", "postcss-nested": "^6.2.0" } -} \ No newline at end of file +}