-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "vue-hour-range-picker",
"private": false,
"version": "1.0.1",
"description": "A Vue3 component to select hour ranges in weekly timeframe",
"homepage": "https://jamshedhossan9.github.io/vue-hour-range-picker/",
"type": "module",
"bugs": {
"url": "https://github.com/jamshedhossan9/vue-hour-range-picker/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamshedhossan9/vue-hour-range-picker.git"
},
"files": [
"dist",
"src"
],
"main": "./dist/hour-range-picker.umd.cjs",
"module": "./dist/hour-range-picker.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/hour-range-picker.js",
"require": "./dist/hour-range-picker.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite --host",
"doc:build": "vite build --config vite-doc.config.js",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"types": "vue-tsc ",
"test": "echo \"No test specified\""
},
"dependencies": {
"vue": "^3.3.11"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@vitejs/plugin-vue": "^4.5.2",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vue-tsc": "^1.8.25",
"@vueuse/core": "^10.7.2",
"bootstrap": "^5.3.2",
"sass": "^1.62.1"
},
"keywords": [
"hourpicker",
"hourrangepicker",
"vue",
"vue 3",
"vue-component"
],
"license": "MIT"
}