package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@fullcalendar/multimonth",
  3. "version": "6.1.15",
  4. "title": "FullCalendar Multi-Month Plugin",
  5. "description": "Display a sequence or grid of multiple months",
  6. "keywords": [
  7. "month"
  8. ],
  9. "homepage": "https://fullcalendar.io/docs/multimonth-grid",
  10. "dependencies": {
  11. "@fullcalendar/daygrid": "~6.1.15"
  12. },
  13. "peerDependencies": {
  14. "@fullcalendar/core": "~6.1.15"
  15. },
  16. "devDependencies": {
  17. "@fullcalendar/core": "~6.1.15",
  18. "@fullcalendar-scripts/standard": "*"
  19. },
  20. "scripts": {
  21. "build": "standard-scripts pkg:build",
  22. "clean": "standard-scripts pkg:clean",
  23. "lint": "eslint ."
  24. },
  25. "type": "module",
  26. "tsConfig": {
  27. "extends": "@fullcalendar-scripts/standard/config/tsconfig.browser.json",
  28. "compilerOptions": {
  29. "rootDir": "./src",
  30. "outDir": "./dist/.tsout"
  31. },
  32. "include": [
  33. "./src/**/*"
  34. ]
  35. },
  36. "buildConfig": {
  37. "exports": {
  38. ".": {
  39. "iife": true
  40. }
  41. },
  42. "iifeGlobals": {
  43. ".": "FullCalendar.MultiMonth"
  44. }
  45. },
  46. "publishConfig": {
  47. "directory": "./dist",
  48. "linkDirectory": true
  49. }
  50. }