package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@storybook/csf-plugin",
  3. "version": "7.6.17",
  4. "description": "Enrich CSF files via static analysis",
  5. "keywords": [
  6. "storybook"
  7. ],
  8. "homepage": "https://github.com/storybookjs/storybook/tree/next/code/lib/csf-plugin",
  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/csf-plugin"
  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. "./package.json": "./package.json"
  31. },
  32. "main": "dist/index.js",
  33. "module": "dist/index.mjs",
  34. "types": "dist/index.d.ts",
  35. "files": [
  36. "dist/**/*",
  37. "README.md",
  38. "*.js",
  39. "*.d.ts",
  40. "!src/**/*"
  41. ],
  42. "scripts": {
  43. "check": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/check.ts",
  44. "prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
  45. },
  46. "dependencies": {
  47. "@storybook/csf-tools": "7.6.17",
  48. "unplugin": "^1.3.1"
  49. },
  50. "devDependencies": {
  51. "typescript": "~4.9.3"
  52. },
  53. "publishConfig": {
  54. "access": "public"
  55. },
  56. "bundler": {
  57. "entries": [
  58. "./src/index.ts"
  59. ],
  60. "externals": [
  61. "webpack",
  62. "vite",
  63. "rollup",
  64. "esbuild"
  65. ],
  66. "platform": "node"
  67. },
  68. "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae17"
  69. }