package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@fullcalendar/bootstrap5",
  3. "version": "6.1.20",
  4. "title": "FullCalendar Bootstrap 5 Plugin",
  5. "description": "Bootstrap 5 theme for FullCalendar",
  6. "keywords": [
  7. "bootstrap",
  8. "bootstrap5"
  9. ],
  10. "homepage": "https://fullcalendar.io/docs/bootstrap5",
  11. "peerDependencies": {
  12. "@fullcalendar/core": "~6.1.20"
  13. },
  14. "devDependencies": {
  15. "@fullcalendar/core": "~6.1.20",
  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. "./internal": {}
  40. },
  41. "iifeGlobals": {
  42. ".": "FullCalendar.Bootstrap5",
  43. "./internal": "FullCalendar.Bootstrap5.Internal"
  44. }
  45. },
  46. "publishConfig": {
  47. "directory": "./dist",
  48. "linkDirectory": true
  49. }
  50. }