package.json 1.4 KB

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