vue3-tailwind-components 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +73 -15
- package/dist/vue3-tailwind-components.es.js +11689 -103
- package/dist/vue3-tailwind-components.umd.js +758 -1
- package/package.json +10 -2
package/package.json
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "vue3-tailwind-components",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.2",
|
4
4
|
"description": "A library of Vue 3 components that use Tailwind",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": "richardhulbert/vue3-tailwind-components",
|
7
|
-
"files": [
|
7
|
+
"files": [
|
8
|
+
"dist"
|
9
|
+
],
|
8
10
|
"main": "./dist/vue3-tailwind-components.umd.js",
|
9
11
|
"module": "./dist/vue3-tailwind-componentses.js",
|
10
12
|
"exports": {
|
@@ -19,6 +21,11 @@
|
|
19
21
|
"preview": "vite preview"
|
20
22
|
},
|
21
23
|
"dependencies": {
|
24
|
+
"@fortawesome/fontawesome-svg-core": "^6.2.1",
|
25
|
+
"@fortawesome/free-brands-svg-icons": "^6.2.1",
|
26
|
+
"@fortawesome/free-regular-svg-icons": "^6.2.1",
|
27
|
+
"@fortawesome/free-solid-svg-icons": "^6.2.1",
|
28
|
+
"@fortawesome/vue-fontawesome": "^3.0.2",
|
22
29
|
"vue": "^3.2.45"
|
23
30
|
},
|
24
31
|
"devDependencies": {
|
@@ -27,6 +34,7 @@
|
|
27
34
|
"autoprefixer": "^10.4.13",
|
28
35
|
"postcss": "^8.4.20",
|
29
36
|
"tailwindcss": "^3.2.4",
|
37
|
+
"tailwindcss-animate": "^1.0.5",
|
30
38
|
"vite": "^4.0.0"
|
31
39
|
}
|
32
40
|
}
|