package.json 1.1 KB

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