package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@fullcalendar/interaction",
  3. "version": "6.1.14",
  4. "title": "FullCalendar Interaction Plugin",
  5. "description": "Calendar functionality for event drag-n-drop, event resizing, date clicking, and date selecting",
  6. "keywords": [
  7. "calendar",
  8. "event",
  9. "full-sized",
  10. "fullcalendar",
  11. "drag-n-drop",
  12. "resizing",
  13. "selecting"
  14. ],
  15. "homepage": "https://fullcalendar.io/docs/editable",
  16. "peerDependencies": {
  17. "@fullcalendar/core": "~6.1.14"
  18. },
  19. "type": "module",
  20. "bugs": "https://fullcalendar.io/reporting-bugs",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/fullcalendar/fullcalendar.git",
  24. "directory": "packages/interaction"
  25. },
  26. "license": "MIT",
  27. "author": {
  28. "name": "Adam Shaw",
  29. "email": "arshaw@arshaw.com",
  30. "url": "http://arshaw.com/"
  31. },
  32. "copyright": "2024 Adam Shaw",
  33. "types": "./index.d.ts",
  34. "main": "./index.cjs",
  35. "module": "./index.js",
  36. "unpkg": "./index.global.min.js",
  37. "jsdelivr": "./index.global.min.js",
  38. "exports": {
  39. "./package.json": "./package.json",
  40. "./index.cjs": "./index.cjs",
  41. "./index.js": "./index.js",
  42. ".": {
  43. "types": "./index.d.ts",
  44. "require": "./index.cjs",
  45. "import": "./index.js"
  46. }
  47. },
  48. "sideEffects": false
  49. }