-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "@howbizarre/vue-month-calendar",
"version": "1.4.61",
"description": "Draws a given month with its days using.",
"homepage": "https://bizarre.how/calendar/",
"license": "CC-BY-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/howbizarre/vue-month-calendar.git"
},
"author": "How Bizarre <how.bizarre@gmail.com>",
"keywords": [
"vue",
"tailwindcss",
"typescript",
"calendar",
"date",
"javascript",
"vuejs",
"node",
"component",
"month",
"dark-mode",
"vue3"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-month-calendar.umd.cjs",
"module": "./dist/vue-month-calendar.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/vue-month-calendar.js",
"require": "./dist/vue-month-calendar.umd.js",
"types": "./dist/main.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build && npm run generate:types",
"generate:types": "vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"test": "exit 0"
},
"dependencies": {
"typescript-calendar-date": "^1.3.4",
"vue": "^3.4.21"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vue-tsc": "^2.0.6"
}
}