package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "fullcalendar",
  3. "version": "6.1.20",
  4. "title": "FullCalendar Standard Bundle",
  5. "description": "Easily render a full-sized drag & drop calendar with a combination of standard plugins",
  6. "homepage": "https://fullcalendar.io/docs/initialize-globals",
  7. "dependencies": {
  8. "@fullcalendar/core": "~6.1.20",
  9. "@fullcalendar/daygrid": "~6.1.20",
  10. "@fullcalendar/interaction": "~6.1.20",
  11. "@fullcalendar/list": "~6.1.20",
  12. "@fullcalendar/multimonth": "~6.1.20",
  13. "@fullcalendar/timegrid": "~6.1.20"
  14. },
  15. "devDependencies": {
  16. "@fullcalendar-scripts/standard": "*"
  17. },
  18. "scripts": {
  19. "build": "standard-scripts pkg:build",
  20. "clean": "standard-scripts pkg:clean",
  21. "lint": "eslint ."
  22. },
  23. "type": "module",
  24. "tsConfig": {
  25. "extends": "@fullcalendar-scripts/standard/config/tsconfig.browser.json",
  26. "compilerOptions": {
  27. "rootDir": "./src",
  28. "outDir": "./dist/.tsout"
  29. },
  30. "include": [
  31. "./src/**/*"
  32. ]
  33. },
  34. "buildConfig": {
  35. "exports": {
  36. ".": {
  37. "iife": true
  38. }
  39. },
  40. "iifeGlobals": {
  41. ".": "FullCalendar",
  42. "*": ""
  43. }
  44. },
  45. "publishConfig": {
  46. "directory": "./dist",
  47. "linkDirectory": true
  48. }
  49. }