package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@fullcalendar/interaction",
  3. "version": "6.1.15",
  4. "title": "FullCalendar Interaction Plugin",
  5. "description": "Calendar functionality for event drag-n-drop, event resizing, date clicking, and date selecting",
  6. "keywords": [
  7. "drag-n-drop",
  8. "resizing",
  9. "selecting"
  10. ],
  11. "homepage": "https://fullcalendar.io/docs/editable",
  12. "peerDependencies": {
  13. "@fullcalendar/core": "~6.1.15"
  14. },
  15. "devDependencies": {
  16. "@fullcalendar/core": "~6.1.15",
  17. "@fullcalendar-scripts/standard": "*"
  18. },
  19. "scripts": {
  20. "build": "standard-scripts pkg:build",
  21. "clean": "standard-scripts pkg:clean",
  22. "lint": "eslint ."
  23. },
  24. "type": "module",
  25. "tsConfig": {
  26. "extends": "@fullcalendar-scripts/standard/config/tsconfig.browser.json",
  27. "compilerOptions": {
  28. "rootDir": "./src",
  29. "outDir": "./dist/.tsout"
  30. },
  31. "include": [
  32. "./src/**/*"
  33. ]
  34. },
  35. "buildConfig": {
  36. "exports": {
  37. ".": {
  38. "iife": true
  39. }
  40. },
  41. "iifeGlobals": {
  42. ".": "FullCalendar.Interaction"
  43. }
  44. },
  45. "publishConfig": {
  46. "directory": "./dist",
  47. "linkDirectory": true
  48. }
  49. }