generated from web-illinois/toolkit-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1020 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@illinois-toolkit/ilw-profile-card",
"description": "One paragraph description of the component.",
"repository": "github:web-illinois/ilw-profile-card",
"private": false,
"license": "MIT",
"version": "1.0.0",
"type": "module",
"files": [
"src/**",
"dist/**",
"builder/**"
],
"exports": {
".": {
"import": "./src/ilw-profile-card.js",
"require": "./dist/ilw-profile-card.cjs",
"default": "./dist/ilw-profile-card.js"
}
},
"main":"./dist/ilw-profile-card.js",
"scripts": {
"dev": "vite",
"build": "vite build --config vite.build.config.js --emptyOutDir",
"preview": "vite preview",
"prepack": "npm run build"
},
"dependencies": {
"lit": "3.1.3",
"@illinois-toolkit/ilw-card": "^1.0.0",
"@illinois-toolkit/ilw-icon": "^1.0.0"
},
"devDependencies": {
"vite": "^5.4.8",
"prettier": "^3.3.3"
}
}