package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@fullcalendar/core",
  3. "version": "6.1.13",
  4. "title": "FullCalendar Core",
  5. "description": "FullCalendar core package for rendering a calendar",
  6. "dependencies": {
  7. "preact": "~10.12.1"
  8. },
  9. "devDependencies": {
  10. "@fullcalendar-scripts/standard": "*",
  11. "globby": "^13.1.2",
  12. "handlebars": "^4.1.2"
  13. },
  14. "scripts": {
  15. "build": "standard-scripts pkg:build",
  16. "clean": "standard-scripts pkg:clean",
  17. "lint": "eslint ."
  18. },
  19. "type": "module",
  20. "tsConfig": {
  21. "extends": "@fullcalendar-scripts/standard/config/tsconfig.browser.json",
  22. "compilerOptions": {
  23. "rootDir": "./src",
  24. "outDir": "./dist/.tsout"
  25. },
  26. "include": [
  27. "./src/**/*"
  28. ]
  29. },
  30. "buildConfig": {
  31. "exports": {
  32. ".": {
  33. "iife": true
  34. },
  35. "./preact": {},
  36. "./internal": {},
  37. "./locales-all": {
  38. "iife": true,
  39. "generator": "./scripts/generate-locales-all.js"
  40. },
  41. "./locales/*": {
  42. "iife": true,
  43. "iifeGenerator": "./scripts/generate-locale-iife.js"
  44. }
  45. },
  46. "iifeGlobals": {
  47. ".": "FullCalendar",
  48. "./preact": "FullCalendar.Preact",
  49. "./internal": "FullCalendar.Internal",
  50. "preact": "",
  51. "preact/compat": ""
  52. }
  53. },
  54. "publishConfig": {
  55. "directory": "./dist",
  56. "linkDirectory": true
  57. }
  58. }