package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {
  2. "name": "@superset-ui/core",
  3. "version": "0.20.4",
  4. "description": "Superset UI core",
  5. "keywords": [
  6. "superset"
  7. ],
  8. "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-core#readme",
  9. "bugs": {
  10. "url": "https://github.com/apache/superset/issues"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/apache/superset.git",
  15. "directory": "superset-frontend/packages/superset-ui-core"
  16. },
  17. "license": "Apache-2.0",
  18. "author": "Superset",
  19. "sideEffects": false,
  20. "main": "lib/index.js",
  21. "module": "esm/index.js",
  22. "files": [
  23. "esm",
  24. "lib"
  25. ],
  26. "dependencies": {
  27. "@apache-superset/core": "*",
  28. "@ant-design/icons": "^5.2.6",
  29. "@babel/runtime": "^7.28.4",
  30. "@fontsource/fira-code": "^5.2.7",
  31. "@fontsource/inter": "^5.2.6",
  32. "@types/json-bigint": "^1.0.4",
  33. "ace-builds": "^1.43.4",
  34. "ag-grid-community": "34.2.0",
  35. "ag-grid-react": "34.2.0",
  36. "brace": "^0.11.1",
  37. "classnames": "^2.2.5",
  38. "csstype": "^3.1.3",
  39. "core-js": "^3.38.1",
  40. "d3-format": "^1.3.2",
  41. "dayjs": "^1.11.18",
  42. "d3-interpolate": "^3.0.1",
  43. "d3-scale": "^4.0.2",
  44. "d3-time": "^3.1.0",
  45. "d3-time-format": "^4.1.0",
  46. "dompurify": "^3.2.4",
  47. "fetch-retry": "^6.0.0",
  48. "handlebars": "^4.7.8",
  49. "jed": "^1.1.1",
  50. "lodash": "^4.17.21",
  51. "math-expression-evaluator": "^2.0.6",
  52. "pretty-ms": "^9.3.0",
  53. "re-resizable": "^6.11.2",
  54. "react-ace": "^14.0.1",
  55. "react-js-cron": "^5.2.0",
  56. "react-draggable": "^4.5.0",
  57. "react-resize-detector": "^7.1.2",
  58. "react-syntax-highlighter": "^15.6.6",
  59. "react-ultimate-pagination": "^1.3.2",
  60. "react-error-boundary": "^6.0.0",
  61. "react-markdown": "^8.0.7",
  62. "regenerator-runtime": "^0.14.1",
  63. "rehype-raw": "^7.0.0",
  64. "rehype-sanitize": "^6.0.0",
  65. "remark-gfm": "^4.0.1",
  66. "reselect": "^5.1.1",
  67. "rison": "^0.1.1",
  68. "seedrandom": "^3.0.5",
  69. "@visx/responsive": "^3.12.0",
  70. "xss": "^1.0.15"
  71. },
  72. "devDependencies": {
  73. "@emotion/styled": "^11.14.1",
  74. "@types/d3-format": "^3.0.4",
  75. "@types/d3-interpolate": "^3.0.4",
  76. "@types/d3-scale": "^2.1.1",
  77. "@types/d3-time": "^3.0.4",
  78. "@types/d3-time-format": "^4.0.3",
  79. "@types/react-table": "^7.7.20",
  80. "@types/react-syntax-highlighter": "^15.5.13",
  81. "@types/jquery": "^3.5.33",
  82. "@types/lodash": "^4.17.20",
  83. "@types/math-expression-evaluator": "^1.3.3",
  84. "@types/node": "^24.8.1",
  85. "@types/prop-types": "^15.7.15",
  86. "@types/rison": "0.1.0",
  87. "@types/seedrandom": "^3.0.8",
  88. "fetch-mock": "^11.1.4",
  89. "jest-mock-console": "^2.0.0",
  90. "resize-observer-polyfill": "1.5.1",
  91. "timezone-mock": "1.3.6"
  92. },
  93. "peerDependencies": {
  94. "antd": "^5.24.9",
  95. "@emotion/cache": "^11.4.0",
  96. "@emotion/react": "^11.4.1",
  97. "@emotion/styled": "^11.14.1",
  98. "@testing-library/dom": "^8.20.1",
  99. "@testing-library/jest-dom": "*",
  100. "@testing-library/react": "^12.1.5",
  101. "@testing-library/react-hooks": "*",
  102. "@testing-library/user-event": "*",
  103. "@types/react": "*",
  104. "@types/react-loadable": "*",
  105. "@types/react-window": "^1.8.8",
  106. "@types/tinycolor2": "*",
  107. "nanoid": "^5.0.9",
  108. "react": "^17.0.2",
  109. "react-dom": "^17.0.2",
  110. "react-loadable": "^5.5.0",
  111. "tinycolor2": "*"
  112. },
  113. "publishConfig": {
  114. "access": "public"
  115. },
  116. "exports": {
  117. ".": {
  118. "import": "./esm/index.js",
  119. "require": "./lib/index.js",
  120. "types": "./lib/index.d.ts"
  121. },
  122. "./components/*": {
  123. "import": "./esm/components/*/index.js",
  124. "require": "./lib/components/*/index.js",
  125. "types": "./lib/components/*/index.d.ts"
  126. },
  127. "./components": {
  128. "import": "./esm/components/index.js",
  129. "require": "./lib/components/index.js",
  130. "types": "./lib/components/index.d.ts"
  131. },
  132. "./utils/*": {
  133. "import": "./esm/utils/*.js",
  134. "require": "./lib/utils/*.js",
  135. "types": "./lib/utils/*.d.ts"
  136. }
  137. }
  138. }