-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.05 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@softechub-ib/vue-datepicker",
"version": "1.0.15",
"description": "Datepicker component for Vue 3",
"author": "softechub-ib",
"private": false,
"license": "MIT",
"type": "module",
"main": "dist/vue-datepicker.umd.cjs",
"module": "dist/vue-datepicker.js",
"browser": "dist/vue-datepicker.js",
"style": "dist/style.css",
"files": [
"dist/*",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./dist/vue-datepicker.js",
"require": "./dist/vue-datepicker.umd.cjs",
"types": "./dist/index.d.ts"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"test": "vitest --root src/",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@floating-ui/vue": "^1.1.5",
"dayjs": "^1.11.13",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-istanbul": "^2.1.9",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.31.0",
"jsdom": "^25.0.1",
"path": "^0.12.7",
"prettier": "3.3.3",
"sass-embedded": "^1.81.0",
"typescript": "~5.6.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.9",
"vue": "^3.5.12",
"vue-tsc": "^2.1.8"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softechub-ib/vue-datepicker.git"
},
"keywords": [
"vue",
"vuejs",
"vue3",
"date",
"datepicker",
"vue-datepicker",
"vuejs-datepicker",
"vue3-datepicker",
"daterangepicker",
"datemonthpicker",
"dateyearpicker"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}