package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@fullcalendar/daygrid",
  3. "version": "6.1.14",
  4. "title": "FullCalendar Day Grid Plugin",
  5. "description": "Display events on a month view or \"day grid\" view",
  6. "homepage": "https://fullcalendar.io/docs/month-view",
  7. "keywords": [
  8. "calendar",
  9. "event",
  10. "full-sized",
  11. "fullcalendar",
  12. "month",
  13. "month-view"
  14. ],
  15. "peerDependencies": {
  16. "@fullcalendar/core": "~6.1.14"
  17. },
  18. "type": "module",
  19. "bugs": "https://fullcalendar.io/reporting-bugs",
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/fullcalendar/fullcalendar.git",
  23. "directory": "packages/daygrid"
  24. },
  25. "license": "MIT",
  26. "author": {
  27. "name": "Adam Shaw",
  28. "email": "arshaw@arshaw.com",
  29. "url": "http://arshaw.com/"
  30. },
  31. "copyright": "2024 Adam Shaw",
  32. "types": "./index.d.ts",
  33. "main": "./index.cjs",
  34. "module": "./index.js",
  35. "unpkg": "./index.global.min.js",
  36. "jsdelivr": "./index.global.min.js",
  37. "exports": {
  38. "./package.json": "./package.json",
  39. "./index.cjs": "./index.cjs",
  40. "./index.js": "./index.js",
  41. ".": {
  42. "types": "./index.d.ts",
  43. "require": "./index.cjs",
  44. "import": "./index.js"
  45. },
  46. "./internal.cjs": "./internal.cjs",
  47. "./internal.js": "./internal.js",
  48. "./internal": {
  49. "types": "./internal.d.ts",
  50. "require": "./internal.cjs",
  51. "import": "./internal.js"
  52. }
  53. },
  54. "sideEffects": false
  55. }