-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@xeroui/vue",
"version": "0.0.3",
"type": "module",
"files": [
"dist"
],
"main": "./dist/xui-vue.umd.cjs",
"module": "./dist/xui-vue.js",
"exports": {
".": {
"import": "./dist/xui-vue.js",
"require": "./dist/xui-vue.umd.cjs"
},
"./style.css": "./dist/xui-vue.css"
},
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"types": "vue-tsc ",
"preview": "vite preview",
"fmt": "prettier --write \"src/**/*.ts\" \"src/**/*.vue\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"lodash": "^4.17.21",
"tailwind-merge": "^2.5.5",
"vue": "^3.5.13"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/vue3": "^8.4.7",
"@storybook/vue3-vite": "^8.4.7",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.10",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vue-tsc": "^2.1.10"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/xeroui/xui-vue.git"
},
"author": "Arafat Islam",
"license": "ISC",
"bugs": {
"url": "https://github.com/xeroui/xui-vue/issues"
},
"homepage": "https://github.com/xeroui/xui-vue#readme",
"keywords": [
"vue",
"tailwindcss",
"vite",
"ui",
"library"
],
"description": "A Vue 3 UI library with TailwindCSS"
}