package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@fullcalendar/list",
  3. "version": "6.1.13",
  4. "title": "FullCalendar List View Plugin",
  5. "description": "Display events on a calendar view that looks like a bulleted list",
  6. "keywords": [
  7. "list-view"
  8. ],
  9. "homepage": "https://fullcalendar.io/docs/list-view",
  10. "peerDependencies": {
  11. "@fullcalendar/core": "~6.1.13"
  12. },
  13. "devDependencies": {
  14. "@fullcalendar/core": "~6.1.13",
  15. "@fullcalendar-scripts/standard": "*"
  16. },
  17. "scripts": {
  18. "build": "standard-scripts pkg:build",
  19. "clean": "standard-scripts pkg:clean",
  20. "lint": "eslint ."
  21. },
  22. "type": "module",
  23. "tsConfig": {
  24. "extends": "@fullcalendar-scripts/standard/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. ".": {
  36. "iife": true
  37. },
  38. "./internal": {}
  39. },
  40. "iifeGlobals": {
  41. ".": "FullCalendar.List",
  42. "./internal": "FullCalendar.List.Internal"
  43. }
  44. },
  45. "publishConfig": {
  46. "directory": "./dist",
  47. "linkDirectory": true
  48. }
  49. }