package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@storybook/postinstall",
  3. "version": "7.6.17",
  4. "description": "Storybook addons postinstall utilities",
  5. "keywords": [
  6. "api",
  7. "storybook"
  8. ],
  9. "homepage": "https://github.com/storybookjs/storybook/tree/next/code/lib/postinstall",
  10. "bugs": {
  11. "url": "https://github.com/storybookjs/storybook/issues"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/storybookjs/storybook.git",
  16. "directory": "code/lib/postinstall"
  17. },
  18. "funding": {
  19. "type": "opencollective",
  20. "url": "https://opencollective.com/storybook"
  21. },
  22. "license": "MIT",
  23. "sideEffects": false,
  24. "exports": {
  25. ".": {
  26. "types": "./dist/index.d.ts",
  27. "node": "./dist/index.js",
  28. "require": "./dist/index.js",
  29. "import": "./dist/index.mjs"
  30. },
  31. "./package.json": "./package.json"
  32. },
  33. "main": "dist/index.js",
  34. "module": "dist/index.mjs",
  35. "types": "dist/index.d.ts",
  36. "files": [
  37. "dist/**/*",
  38. "README.md",
  39. "*.js",
  40. "*.d.ts",
  41. "!src/**/*"
  42. ],
  43. "scripts": {
  44. "check": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/check.ts",
  45. "prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
  46. },
  47. "devDependencies": {
  48. "jest": "^29.7.0",
  49. "jest-specific-snapshot": "^8.0.0",
  50. "jscodeshift": "^0.15.1",
  51. "typescript": "~4.9.3"
  52. },
  53. "publishConfig": {
  54. "access": "public"
  55. },
  56. "bundler": {
  57. "entries": [
  58. "./src/index.ts"
  59. ]
  60. },
  61. "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae17"
  62. }