package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "fullcalendar",
  3. "version": "6.0.0-beta.1",
  4. "title": "FullCalendar Standard Bundle",
  5. "description": "An easily consumable combination of standard plugins",
  6. "docs": "https://fullcalendar.io/docs/initialize-globals",
  7. "type": "module",
  8. "dependencies": {
  9. "@fullcalendar/core": "workspace:*",
  10. "@fullcalendar/daygrid": "workspace:*",
  11. "@fullcalendar/interaction": "workspace:*",
  12. "@fullcalendar/list": "workspace:*",
  13. "@fullcalendar/timegrid": "workspace:*"
  14. },
  15. "devDependencies": {
  16. "@fullcalendar/standard-scripts": "workspace:*"
  17. },
  18. "scripts": {
  19. "build": "standard-scripts pkg:build",
  20. "clean": "standard-scripts pkg:clean",
  21. "lint": "eslint ."
  22. },
  23. "tsConfig": {
  24. "extends": "@fullcalendar/standard-scripts/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. ".": { "iife": true }
  36. },
  37. "iifeGlobals": {
  38. ".": "FullCalendar",
  39. "*": ""
  40. }
  41. },
  42. "publishConfig": {
  43. "directory": "./dist",
  44. "linkDirectory": true
  45. }
  46. }