forked from antoniandre/vue-cal-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.86 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
67
68
69
70
{
"name": "@artesa/vue-cal",
"version": "4.8.0",
"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": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@fortawesome/fontawesome-free": "^5.15.4",
"@mdi/font": "^6.9.96",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/compiler-sfc": "^3.2.37",
"autoprefixer": "^10.4.7",
"eslint": "^8.20.0",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.54.0",
"simple-syntax-highlighter": "^2.2.3",
"vite": "^3.0.9",
"vite-plugin-pug": "^0.3.1",
"vue": "^3.2.37",
"vue-router": "^4.1.3",
"wave-ui": "^2.40.5"
},
"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"
]
}