package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@fullcalendar/icalendar",
  3. "version": "6.1.20",
  4. "title": "FullCalendar iCalendar Plugin",
  5. "description": "Display events from a public iCalendar feed",
  6. "keywords": [
  7. "icalendar",
  8. "ics"
  9. ],
  10. "homepage": "https://fullcalendar.io/docs/icalendar",
  11. "peerDependencies": {
  12. "@fullcalendar/core": "~6.1.20",
  13. "ical.js": "^1.4.0"
  14. },
  15. "devDependencies": {
  16. "@fullcalendar/core": "~6.1.20",
  17. "@fullcalendar-scripts/standard": "*",
  18. "ical.js": "^1.4.0"
  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.ICalendar",
  44. "ical.js": "ICAL"
  45. }
  46. },
  47. "publishConfig": {
  48. "directory": "./dist",
  49. "linkDirectory": true
  50. }
  51. }