| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "name": "fullcalendar",
- "version": "6.1.20",
- "title": "FullCalendar Standard Bundle",
- "description": "Easily render a full-sized drag & drop calendar with a combination of standard plugins",
- "homepage": "https://fullcalendar.io/docs/initialize-globals",
- "dependencies": {
- "@fullcalendar/core": "~6.1.20",
- "@fullcalendar/daygrid": "~6.1.20",
- "@fullcalendar/interaction": "~6.1.20",
- "@fullcalendar/list": "~6.1.20",
- "@fullcalendar/multimonth": "~6.1.20",
- "@fullcalendar/timegrid": "~6.1.20"
- },
- "devDependencies": {
- "@fullcalendar-scripts/standard": "*"
- },
- "scripts": {
- "build": "standard-scripts pkg:build",
- "clean": "standard-scripts pkg:clean",
- "lint": "eslint ."
- },
- "type": "module",
- "tsConfig": {
- "extends": "@fullcalendar-scripts/standard/config/tsconfig.browser.json",
- "compilerOptions": {
- "rootDir": "./src",
- "outDir": "./dist/.tsout"
- },
- "include": [
- "./src/**/*"
- ]
- },
- "buildConfig": {
- "exports": {
- ".": {
- "iife": true
- }
- },
- "iifeGlobals": {
- ".": "FullCalendar",
- "*": ""
- }
- },
- "publishConfig": {
- "directory": "./dist",
- "linkDirectory": true
- }
- }
|