forked from fullcalendar/fullcalendar-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.26 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
71
72
73
74
75
76
77
{
"name": "@fullcalendar/vue3",
"version": "6.1.15",
"title": "FullCalendar Vue 3 Component",
"description": "The official Vue 3 component for FullCalendar",
"keywords": [
"calendar",
"event",
"full-sized",
"fullcalendar",
"vue",
"vue3"
],
"homepage": "https://fullcalendar.io/docs/vue",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fullcalendar/fullcalendar-vue.git"
},
"peerDependencies": {
"@fullcalendar/core": "~6.1.15",
"vue": "^3.0.11"
},
"devDependencies": {
"@fullcalendar/core": "~6.1.15",
"@fullcalendar/daygrid": "~6.1.15",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/test-utils": "next",
"concurrently": "^5.3.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "^0.0.32",
"rollup": "^2.21.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"terser": "^5.4.0",
"typescript": "^4.0.5",
"vite": "^3.2.3",
"vue": "^3.2.41",
"vue-i18n": "next"
},
"scripts": {
"build": "pnpm run tsc && pnpm run rollup && pnpm run vite && pnpm run minify",
"dev": "pnpm run tsc && concurrently 'npm:tsc:dev' 'npm:rollup:dev' 'npm:vite:dev'",
"clean": "rm -rf dist tests/dist",
"tsc": "tsc -p .",
"tsc:dev": "tsc -p . --watch --preserveWatchOutput --pretty",
"rollup": "rollup -c",
"rollup:dev": "rollup -c --watch",
"vite": "vite build",
"vite:dev": "vite build --watch",
"test": "karma start karma.config.cjs --browsers ChromeHeadless --single-run --no-auto-watch",
"test:dev": "karma start karma.config.cjs",
"minify": "terser --compress --mangle --comments false --output dist/index.global.min.js -- dist/index.global.js",
"ci": "pnpm run clean && pnpm run build && pnpm run test"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.global.min.js",
"jsdelivr": "dist/index.global.min.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"sideEffects": false
}