forked from icehaunter/vue3-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.47 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
{
"author": {
"email": "icehaunter@gmail.com",
"name": "Ilya Borovitinov"
},
"license": "MIT",
"engines": {
"node": ">=10.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/icehaunter/vue3-datepicker.git"
},
"bugs": {
"url": "https://github.com/icehaunter/vue3-datepicker/issues"
},
"private": false,
"name": "vue3-datepicker",
"version": "0.1.3",
"publishConfig": {
"access": "public"
},
"description": "A simple Vue 3 datepicker component. Supports disabling of dates, translations. Dependent on date-fns.",
"keywords": [
"vue",
"vue 3",
"component",
"datepicker",
"date-picker",
"calendar",
"date-fns"
],
"main": "dist/vue3-datepicker.cjs.js",
"module": "dist/vue3-datepicker.esm.js",
"style": "dist/vue3-datepicker.css",
"types": "dist/Datepicker.vue.d.ts",
"files": [
"src/datepicker",
"dist"
],
"scripts": {
"dev": "vite",
"build:demo": "vite build",
"build:component": "rollup -c build/rollup.config.js"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.0.0",
"eslint": "^7.9.0",
"prettier": "^2.1.2",
"rollup": "^2.28.2",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-typescript2": "^0.27.2",
"rollup-plugin-vue": "^6.0.0-beta.8",
"typescript": "^4.0.3",
"vite": "^1.0.0-rc.4"
},
"peerDependencies": {
"vue": "^3.0.0",
"date-fns": "^2.16.1"
},
"dependencies": {
"date-fns": "^2.16.1"
}
}