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 95491c3 commit ba8e4fd
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,32 @@
{
"name": "@illinois-toolkit/ilw-columns",
"description": "One paragraph description of the component.",
"description": "Illinois Toolkit: This uses the CSS flexbox to split the container into multiple sections.",
"repository": "github:web-illinois/ilw-columns",
"private": false,
"version": "0.0.1",
"version": "1.0.0-alpha",
"type": "module",
"files": [
"src/**",
"dist/**",
"builder/**"
],
"exports": {
".": {
"import": "./src/ilw-columns.js"
"import": "./src/ilw-columns.js",
"require": "./src/ilw-columns.cjs",
"default": "./src/ilw-columns.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"
},
"devDependencies": {
"vite": "^5.2.0"
}
}
}

0 comments on commit ba8e4fd

Please sign in to comment.