forked from julienr114/vue-calendar-heatmap
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "vue3-calendar-heatmap",
"version": "2.0.5",
"description": "A lightweight calendar heatmap Vue 3 component built on SVG, inspired by julienr114's vue-calendar-heatmap ans github's contribution calendar graph",
"keywords": [
"vue",
"vue3",
"vuejs",
"vue3js",
"vue-component",
"vue3-component",
"calendar",
"heatmap"
],
"main": "dist/vue3-calendar-heatmap.umd.js",
"module": "dist/vue3-calendar-heatmap.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"src/**/*.vue"
],
"author": {
"name": "Volker Nauruhn",
"email": "[email protected]",
"url": "razorness.de"
},
"homepage": "https://razorness.github.io/vue3-calendar-heatmap",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/razorness/vue3-calendar-heatmap.git"
},
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs --clean-cache",
"up": "taze major -I"
},
"dependencies": {},
"devDependencies": {
"@babel/types": "^7.21.3",
"@types/node": "^18.15.3",
"@vitejs/plugin-vue": "^4.1.0",
"@vuepress/plugin-register-components": "2.0.0-beta.61",
"@vuepress/plugin-shiki": "2.0.0-beta.61",
"sass": "^1.59.3",
"taze": "^0.9.1",
"typescript": "^5.0.2",
"vite": "^4.2.0",
"vite-plugin-dts": "^2.1.0",
"vue": "^3.2.47",
"vue-tsc": "^1.2.0",
"vuepress": "2.0.0-beta.61",
"tippy.js": "^6.3.7"
},
"peerDependencies": {
"vue": "^3.2.29",
"tippy.js": "^6.3.7"
},
"engines": {
"node": ">=16"
}
}