forked from antoniandre/vue-cal-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.71 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
{
"name": "vue-cal",
"version": "3.11.1",
"description": "A Vue JS full calendar, no dependency, no BS. :metal:",
"author": "Antoni Andre <antoniandre.web@gmail.com>",
"repository": "https://github.com/antoniandre/vue-cal",
"homepage": "https://antoniandre.github.io/vue-cal",
"license": "MIT",
"funding": "https://github.com/sponsors/antoniandre",
"scripts": {
"dev": "vite",
"build": "vite build --base /vue-cal/",
"build-bundle": "BUNDLE=true vite build && mv ./dist/style.css ./dist/vuecal.css && rm ./dist/favicon.ico",
"serve": "vite preview docs --base /vue-cal/",
"lint": "vite lint"
},
"main": "dist/vue-cal.cjs.js",
"module": "dist/vue-cal.es.js",
"unpkg": "dist/vue-cal.iife.js",
"jsdelivr": "dist/vue-cal.iife.js",
"exports": {
".": {
"import": "./dist/vue-cal.es.js",
"require": "./dist/vue-cal.cjs.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@mdi/font": "^6.9.96",
"@vitejs/plugin-vue2": "^1.1.2",
"autoprefixer": "^10.4.8",
"eslint": "^8.23.0",
"eslint-plugin-vue": "^7.20.0",
"pug": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.54.7",
"simple-syntax-highlighter": "^1.5.1",
"vite": "^3.0.9",
"vue": "^2.7.10",
"vue-router": "^3.6.4",
"wave-ui": "^1.56.2"
},
"peerDependencies": {
"vue": "^2.6.14 || ^3.2.0"
},
"keywords": [
"vuecal",
"vue cal",
"vue calendar",
"full calendar",
"calendar events",
"vue",
"vuejs",
"vue 3",
"vue 2",
"ui"
]
}