package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "name": "@storybook/components",
  3. "version": "7.6.17",
  4. "description": "Core Storybook Components",
  5. "keywords": [
  6. "storybook"
  7. ],
  8. "homepage": "https://github.com/storybookjs/storybook/tree/next/code/ui/components",
  9. "bugs": {
  10. "url": "https://github.com/storybookjs/storybook/issues"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/storybookjs/storybook.git",
  15. "directory": "code/ui/components"
  16. },
  17. "funding": {
  18. "type": "opencollective",
  19. "url": "https://opencollective.com/storybook"
  20. },
  21. "license": "MIT",
  22. "sideEffects": false,
  23. "exports": {
  24. ".": {
  25. "types": "./dist/index.d.ts",
  26. "node": "./dist/index.js",
  27. "require": "./dist/index.js",
  28. "import": "./dist/index.mjs"
  29. },
  30. "./html": {
  31. "types": "./dist/html.d.ts",
  32. "require": "./dist/html.js",
  33. "import": "./dist/html.mjs"
  34. },
  35. "./package.json": "./package.json"
  36. },
  37. "main": "dist/index.js",
  38. "module": "dist/index.mjs",
  39. "types": "dist/index.d.ts",
  40. "typesVersions": {
  41. "*": {
  42. "*": [
  43. "dist/index.d.ts"
  44. ],
  45. "html": [
  46. "dist/html.d.ts"
  47. ]
  48. }
  49. },
  50. "files": [
  51. "dist/**/*",
  52. "README.md",
  53. "*.js",
  54. "*.d.ts",
  55. "!src/**/*"
  56. ],
  57. "scripts": {
  58. "check": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/check.ts",
  59. "prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
  60. },
  61. "dependencies": {
  62. "@radix-ui/react-select": "^1.2.2",
  63. "@radix-ui/react-toolbar": "^1.0.4",
  64. "@storybook/client-logger": "7.6.17",
  65. "@storybook/csf": "^0.1.2",
  66. "@storybook/global": "^5.0.0",
  67. "@storybook/theming": "7.6.17",
  68. "@storybook/types": "7.6.17",
  69. "memoizerific": "^1.11.3",
  70. "use-resize-observer": "^9.1.0",
  71. "util-deprecate": "^1.0.2"
  72. },
  73. "devDependencies": {
  74. "@popperjs/core": "^2.6.0",
  75. "@radix-ui/react-scroll-area": "^1.0.5",
  76. "@storybook/icons": "^1.1.6",
  77. "@types/react-syntax-highlighter": "11.0.5",
  78. "@types/util-deprecate": "^1.0.0",
  79. "css": "^3.0.0",
  80. "polished": "^4.2.2",
  81. "prettier": "^2.8.0",
  82. "react-popper-tooltip": "^4.4.2",
  83. "react-syntax-highlighter": "^15.4.5",
  84. "react-textarea-autosize": "^8.3.0",
  85. "ts-dedent": "^2.0.0",
  86. "typescript": "~4.9.3"
  87. },
  88. "peerDependencies": {
  89. "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
  90. "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
  91. },
  92. "publishConfig": {
  93. "access": "public"
  94. },
  95. "bundler": {
  96. "entries": [
  97. "./src/index.ts"
  98. ],
  99. "platform": "neutral"
  100. },
  101. "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae17"
  102. }