This repository has been archived by the owner on Mar 14, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
75 lines (75 loc) · 2.13 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
75
{
"name": "vue-tailwind-picker",
"version": "2.0.0",
"description": "Datepicker component for vue.js build with Tailwind CSS & dayjs date library",
"main": "dist/vue-tailwind-picker.umd.js",
"module": "dist/vue-tailwind-picker.esm.js",
"unpkg": "dist/vue-tailwind-picker.min.js",
"browser": {
"./sfc": "src/vue-tailwind-picker.vue"
},
"scripts": {
"dev": "vue serve src/vue-tailwind-picker.vue",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-tailwind-picker.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-tailwind-picker.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-tailwind-picker.min.js"
},
"files": [
"dist/*"
],
"keywords": [
"vue-tailwind-picker",
"vue-tailwind-datepicker",
"vue-datepicker",
"vue-tailwindcss",
"tailwindcss",
"vue-tailwind"
],
"author": {
"name": "kenhyuwa",
"email": "wahyu.dhiraashandy8@gmail.com",
"url": "https://tailwindesign.com"
},
"contributors": [
{
"name": "0s1r1s",
"url": "https://github.com/0s1r1s"
},
{
"name": "jserranojunior",
"url": "https://github.com/jserranojunior"
},
{
"name": "LorenzoSapora",
"url": "https://github.com/LorenzoSapora"
},
{
"name": "muarachmann",
"url": "https://github.com/muarachmann"
}
],
"license": "MIT",
"private": false,
"homepage": "https://vue-tailwind-picker.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/kenhyuwa/vue-tailwind-picker.git"
},
"bugs": {
"url": "https://github.com/kenhyuwa/vue-tailwind-picker/issues",
"email": "wahyu.dhiraashandy8@gmail.com"
},
"devDependencies": {
"rollup": "^1.17.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-vue": "^5.0.1",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"dayjs": "^1.8.27",
"tailwindcss": "^2.0.0"
}
}