package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@storybook/source-loader",
  3. "version": "7.6.17",
  4. "description": "Source loader",
  5. "keywords": [
  6. "lib",
  7. "storybook"
  8. ],
  9. "homepage": "https://github.com/storybookjs/storybook/tree/next/code/lib/source-loader",
  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/source-loader"
  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.js",
  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. "dependencies": {
  48. "@storybook/csf": "^0.1.2",
  49. "@storybook/types": "7.6.17",
  50. "estraverse": "^5.2.0",
  51. "lodash": "^4.17.21",
  52. "prettier": "^2.8.0"
  53. },
  54. "devDependencies": {
  55. "jest-specific-snapshot": "^8.0.0",
  56. "typescript": "~4.9.3"
  57. },
  58. "publishConfig": {
  59. "access": "public"
  60. },
  61. "bundler": {
  62. "entries": [
  63. "./src/index.ts"
  64. ],
  65. "platform": "node"
  66. },
  67. "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae17"
  68. }