Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanjonker-illinois authored Aug 23, 2024
1 parent 59f8b7d commit 39f181e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -22,4 +30,4 @@
"vite": "^5.2.0",
"postcss-nested": "^6.2.0"
}
}
}

0 comments on commit 39f181e

Please sign in to comment.