generated from web-illinois/toolkit-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 919 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
{
"name": "@illinois-toolkit/ilw-page-title",
"description": "Illinois Toolkit: provides a background image and gradient overlay options for the text of the title of a particular web page.",
"repository": "github:web-illinois/ilw-page-title",
"private": false,
"license": "MIT",
"version": "1.0.0",
"type": "module",
"files": [
"src/**",
"dist/**",
"builder/**"
],
"exports": {
".": {
"import": "./src/ilw-page-title.js",
"require": "./src/ilw-page-title.cjs",
"default": "./src/ilw-page-title.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"
},
"devDependencies": {
"vite": "^5.2.0"
}
}