-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 KB
/
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
40
41
42
43
44
45
{
"name": "@brayamvalero/vue3-skeleton",
"description": "An elegant skeleton library compatible with Vue 3",
"version": "0.0.32",
"author": "Brayam Valero",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BrayamValero/vue3-skeleton"
},
"keywords": [
"vue",
"vue3",
"skeleton",
"component",
"library",
"npm-package"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.21"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vue-tsc": "^1.8.27"
},
"type": "module",
"main": "./dist/vue3-skeleton.umd.cjs",
"module": "./dist/vue3-skeleton.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}