package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@fullcalendar/google-calendar",
  3. "version": "6.1.20",
  4. "title": "FullCalendar Google Calendar Plugin",
  5. "description": "Display events from a public Google Calendar feed",
  6. "homepage": "https://fullcalendar.io/docs/google-calendar",
  7. "keywords": [
  8. "google-calendar"
  9. ],
  10. "peerDependencies": {
  11. "@fullcalendar/core": "~6.1.20"
  12. },
  13. "devDependencies": {
  14. "@fullcalendar/core": "~6.1.20",
  15. "@fullcalendar-scripts/standard": "*"
  16. },
  17. "scripts": {
  18. "build": "standard-scripts pkg:build",
  19. "clean": "standard-scripts pkg:clean",
  20. "lint": "eslint ."
  21. },
  22. "type": "module",
  23. "tsConfig": {
  24. "extends": "@fullcalendar-scripts/standard/config/tsconfig.browser.json",
  25. "compilerOptions": {
  26. "rootDir": "./src",
  27. "outDir": "./dist/.tsout"
  28. },
  29. "include": [
  30. "./src/**/*"
  31. ]
  32. },
  33. "buildConfig": {
  34. "exports": {
  35. ".": {
  36. "iife": true
  37. }
  38. },
  39. "iifeGlobals": {
  40. ".": "FullCalendar.GoogleCalendar"
  41. }
  42. },
  43. "publishConfig": {
  44. "directory": "./dist",
  45. "linkDirectory": true
  46. }
  47. }