-
-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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": "vue-cal",
"version": "4.10.0",
"description": "A Vue JS full calendar, no dependency, no BS. :metal:",
"author": "Antoni Andre <antoniandre.web@gmail.com>",
"homepage": "https://antoniandre.github.io/vue-cal",
"repository": "https://github.com/antoniandre/vue-cal",
"license": "MIT",
"funding": "https://github.com/sponsors/antoniandre",
"main": "dist/vue-cal.cjs.js",
"unpkg": "dist/vue-cal.iife.js",
"jsdelivr": "dist/vue-cal.iife.js",
"module": "dist/vue-cal.es.js",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/vue-cal.es.js",
"require": "./dist/vue-cal.cjs.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"keywords": [
"vuecal",
"vue cal",
"vue calendar",
"full calendar",
"calendar events",
"vue",
"vuejs",
"vue 3",
"vue 2",
"ui"
],
"scripts": {
"dev": "vite",
"build": "vite build --base /vue-cal-v4/",
"build-bundle": "BUNDLE=true vite build && mv ./dist/style.css ./dist/vuecal.css && rm ./dist/favicon.ico",
"serve": "vite preview --outDir docs --base /vue-cal-v4/",
"lint": "vite lint"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@fortawesome/fontawesome-free": "^5.15.4",
"@mdi/font": "^7.4.47",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.12",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"postcss": "^8.4.47",
"pug": "^3.0.3",
"rollup": "^4.24.0",
"sass": "^1.79.5",
"simple-syntax-highlighter": "^3.0.10",
"terser": "^5.34.1",
"vite": "^5.4.8",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"wave-ui": "^3.16.3"
},
"peerDependencies": {
"vue": "^3.2.0"
}
}