-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 997 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
38
39
{
"name": "@sleelin/portfolito",
"description": "A Lit Web Components Library for building Software Developer Portfolio of Work Pages",
"version": "1.0.0",
"type": "module",
"customElements": "./dist/custom-elements.json",
"exports": {
".": {
"development": "./src/components/index.js",
"import": "./dist/portfolito.js"
}
},
"files": [
"src/**",
"dist/**"
],
"scripts": {
"start": "vite build -w",
"build": "vite build",
"prepare": "vite build",
"preview": "vite preview",
"docs:dev": "vitepress dev",
"docs:build": "vite build && vitepress build",
"docs:preview": "vitepress preview"
},
"peerDependencies": {
"lit": "^3.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"indent.js": "^0.3.5",
"vite": "^5.4.8",
"vite-plugin-babel": "^1.2.0",
"vite-plugin-cem": "^0.8.1",
"vitepress": "^1.3.4",
"vue": "^3.5.10"
}
}