forked from icehaunter/vue3-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.62 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
{
"author": {
"email": "[email protected]",
"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.2.5",
"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/types/Datepicker.vue.d.ts",
"files": [
"src/datepicker",
"dist"
],
"scripts": {
"dev": "vite",
"build:demo": "vite build",
"dev:docs": "vitepress dev docs",
"build:component": "rollup -c build/rollup.config.js",
"build:docs": "vitepress build docs"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.2.4",
"@vue/compiler-sfc": "^3.1.2",
"eslint": "^7.29.0",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"rollup": "^2.52.6",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"typescript": "^4.3.5",
"vite": "^2.3.8",
"vitepress": "^0.15.5",
"vue": "^3.1.2"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"date-fns": "^2.22.1"
}
}