-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
46
47
48
49
{
"name": "@kamona-ui/vue",
"description": "K UI vue components",
"version": "0.0.2",
"license": "MIT",
"private": false,
"author": {
"name": "Ahmed Kamel",
"email": "[email protected]"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kamona-ui/vue.git"
},
"files": [
"dist"
],
"module": "./dist/kui-vue.es.js",
"exports": {
".": {
"import": "./dist/kui-vue.es.js"
},
"./style/kui-vue.css": "./dist/kui-vue.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier -w src"
},
"dependencies": {
"@headlessui/vue": "^1.7.22",
"@iconify/vue": "^4.1.2",
"flatpickr": "^4.6.13",
"vue": "^3.4.37"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vueuse/core": "^11.1.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.45",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.11",
"vite": "^5.4.6"
}
}