-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
67 lines (67 loc) · 1.56 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
{
"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.4.0",
"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.umd.js",
"module": "dist/vue3-datepicker.mjs",
"types": "./dist/types/Datepicker.vue.d.ts",
"files": [
"src/datepicker",
"dist"
],
"scripts": {
"dev": "vite",
"dev:docs": "vitepress dev docs",
"build:component": "vite build",
"build:docs": "vitepress build docs",
"preview:docs": "vitepress preview docs",
"format": "prettier -w ."
},
"devDependencies": {
"@babel/types": "^7.22.4",
"@types/node": "^20.2.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"prettier": "^2.8.8",
"typescript": "^4.8.4",
"vite": "^4.3.9",
"vite-plugin-css-injected-by-js": "^3.1.1",
"vite-plugin-dts": "^2.3.0",
"vitepress": "^1.0.0-beta.1",
"vue": "^3.3.4"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"date-fns": "^2.22.1"
}
}