| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "fullcalendar",
- "version": "6.0.0-beta.1",
- "title": "FullCalendar Standard Bundle",
- "description": "An easily consumable combination of standard plugins",
- "docs": "https://fullcalendar.io/docs/initialize-globals",
- "type": "module",
- "dependencies": {
- "@fullcalendar/core": "workspace:*",
- "@fullcalendar/daygrid": "workspace:*",
- "@fullcalendar/interaction": "workspace:*",
- "@fullcalendar/list": "workspace:*",
- "@fullcalendar/timegrid": "workspace:*"
- },
- "devDependencies": {
- "@fullcalendar/standard-scripts": "workspace:*"
- },
- "scripts": {
- "build": "standard-scripts pkg:build",
- "clean": "standard-scripts pkg:clean",
- "lint": "eslint ."
- },
- "tsConfig": {
- "extends": "@fullcalendar/standard-scripts/config/tsconfig.browser.json",
- "compilerOptions": {
- "rootDir": "./src",
- "outDir": "./dist/.tsout"
- },
- "include": [
- "./src/**/*"
- ]
- },
- "buildConfig": {
- "exports": {
- ".": { "iife": true }
- },
- "iifeGlobals": {
- ".": "FullCalendar",
- "*": ""
- }
- },
- "publishConfig": {
- "directory": "./dist",
- "linkDirectory": true
- }
- }
|