forked from e111077/vite-lit-element-ts-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 899 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
{
"name": "vite-lit-element-ts-sass",
"version": "0.0.0",
"main": "dist/my-vite-element.es.js",
"exports": {
".": "./dist/my-vite-element.es.js"
},
"types": "types/my-element.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"lit": "^2.2.6"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-vite": "^0.1.38",
"@storybook/web-components": "^6.5.9",
"babel-loader": "^8.2.5",
"rollup-plugin-postcss-lit": "^2.0.0",
"sass": "^1.53.0",
"typescript": "^4.7.4",
"vite": "^2.9.13"
}
}