package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "@storybook/preview",
  3. "version": "7.6.17",
  4. "description": "",
  5. "keywords": [
  6. "storybook"
  7. ],
  8. "homepage": "https://github.com/storybookjs/storybook/tree/next/code/lib/preview",
  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/lib/preview"
  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/runtime.d.ts",
  26. "import": "./dist/runtime.js"
  27. },
  28. "./globals": {
  29. "types": "./dist/globals.d.ts",
  30. "import": "./dist/globals.js",
  31. "require": "./dist/globals.js"
  32. },
  33. "./package.json": "./package.json"
  34. },
  35. "main": "dist/runtime.js",
  36. "module": "dist/runtime.js",
  37. "types": "dist/runtime.d.ts",
  38. "typesVersions": {
  39. "*": {
  40. "*": [
  41. "dist/runtime.d.ts"
  42. ],
  43. "globals": [
  44. "dist/globals.d.ts"
  45. ]
  46. }
  47. },
  48. "files": [
  49. "dist/**/*",
  50. "README.md",
  51. "*.js",
  52. "*.d.ts",
  53. "!src/**/*"
  54. ],
  55. "scripts": {
  56. "check": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/check.ts",
  57. "prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/esm-bundle.ts"
  58. },
  59. "devDependencies": {
  60. "@storybook/channels": "7.6.17",
  61. "@storybook/client-logger": "7.6.17",
  62. "@storybook/core-events": "7.6.17",
  63. "@storybook/global": "^5.0.0",
  64. "@storybook/preview-api": "7.6.17",
  65. "browser-dtector": "^3.4.0",
  66. "fs-extra": "^11.1.0",
  67. "ts-dedent": "^2.0.0",
  68. "typescript": "~4.9.3"
  69. },
  70. "publishConfig": {
  71. "access": "public"
  72. },
  73. "bundler": {
  74. "browserEntries": [
  75. "./src/runtime.ts"
  76. ],
  77. "nodeEntries": [
  78. "./src/globals.ts"
  79. ]
  80. },
  81. "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae17"
  82. }