package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@fullcalendar/luxon3",
  3. "version": "6.1.20",
  4. "title": "FullCalendar Luxon 3 Plugin",
  5. "description": "Enhanced date formatting, conversion, and named time zone functionality with Luxon 3",
  6. "keywords": [
  7. "luxon",
  8. "luxon3",
  9. "timezone"
  10. ],
  11. "homepage": "https://fullcalendar.io/docs/luxon",
  12. "peerDependencies": {
  13. "@fullcalendar/core": "~6.1.20",
  14. "luxon": "^3.0.0"
  15. },
  16. "devDependencies": {
  17. "@fullcalendar/core": "~6.1.20",
  18. "@fullcalendar-scripts/standard": "*",
  19. "@types/luxon": "^3.3.0",
  20. "luxon": "^3.0.0"
  21. },
  22. "scripts": {
  23. "build": "standard-scripts pkg:build",
  24. "clean": "standard-scripts pkg:clean",
  25. "lint": "eslint ."
  26. },
  27. "type": "module",
  28. "tsConfig": {
  29. "extends": "@fullcalendar-scripts/standard/config/tsconfig.browser.json",
  30. "compilerOptions": {
  31. "rootDir": "./src",
  32. "outDir": "./dist/.tsout"
  33. },
  34. "include": [
  35. "./src/**/*"
  36. ]
  37. },
  38. "buildConfig": {
  39. "exports": {
  40. ".": {
  41. "iife": true
  42. }
  43. },
  44. "iifeGlobals": {
  45. ".": "FullCalendar.Luxon3",
  46. "luxon": "luxon"
  47. }
  48. },
  49. "publishConfig": {
  50. "directory": "./dist",
  51. "linkDirectory": true
  52. }
  53. }