-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.22 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
{
"name": "vue-3-material-date-picker",
"private": false,
"version": "1.2.0",
"type": "module",
"files": [
"dist",
"src/components/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MatijaNovosel/vue-3-material-date-picker.git"
},
"keywords": [
"date-picker",
"vue-3-material-date-picker",
"vue-3",
"vue3",
"vue",
"vuejs"
],
"main": "./dist/vue-3-material-date-picker.umd.cjs",
"module": "./dist/vue-3-material-date-picker.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-3-material-date-picker.js",
"require": "./dist/vue-3-material-date-picker.umd.cjs"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@vueuse/core": "^10.1.2",
"sass": "^1.62.1",
"vue": "^3.2.47"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"path": "^0.12.7",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-dts": "^2.3.0",
"vue-tsc": "^1.4.2"
}
}