package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@storybook/addon-styling-webpack",
  3. "version": "0.0.5",
  4. "description": "A base addon for configuring popular styling tools in Webpack",
  5. "keywords": [
  6. "style",
  7. "design",
  8. "webpack",
  9. "configuration",
  10. "storybook-addons"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/storybookjs/addon-styling-webpack"
  15. },
  16. "license": "MIT",
  17. "author": {
  18. "name": "Shaun Evening",
  19. "email": "goodeveningshaun@gmail.com"
  20. },
  21. "exports": {
  22. ".": {
  23. "require": "./dist/index.js",
  24. "import": "./dist/index.mjs",
  25. "types": "./dist/index.d.ts"
  26. },
  27. "./preset": {
  28. "require": "./dist/preset.js",
  29. "import": "./dist/preset.mjs",
  30. "types": "./dist/preset.d.ts"
  31. },
  32. "./package.json": "./package.json",
  33. "./postinstall": "./postinstall.js"
  34. },
  35. "main": "dist/index.js",
  36. "module": "dist/index.mjs",
  37. "types": "dist/index.d.ts",
  38. "files": [
  39. "bin/**/*",
  40. "dist/**/*",
  41. "README.md",
  42. "*.js",
  43. "*.d.ts"
  44. ],
  45. "scripts": {
  46. "build": "tsup",
  47. "build:watch": "pnpm build --watch",
  48. "clean": "rimraf dist && rimraf bin",
  49. "release": "pnpm build && auto shipit"
  50. },
  51. "dependencies": {
  52. "@storybook/node-logger": "^7.0.12"
  53. },
  54. "devDependencies": {
  55. "@types/node": "^16.0.0",
  56. "auto": "^10.3.0",
  57. "prettier": "^2.8.0",
  58. "rimraf": "^3.0.2",
  59. "tsup": "^6.7.0",
  60. "typescript": "^4.9.0",
  61. "webpack": "^5.0.0"
  62. },
  63. "peerDependencies": {
  64. "webpack": "^5.0.0"
  65. },
  66. "packageManager": "yarn@3.6.1",
  67. "publishConfig": {
  68. "access": "public"
  69. },
  70. "storybook": {
  71. "displayName": "Styling-Webpack",
  72. "supportedFrameworks": [
  73. "react",
  74. "vue",
  75. "web-components",
  76. "html",
  77. "preact"
  78. ],
  79. "icon": "https://raw.githubusercontent.com/storybookjs/addon-styling/1e17a71614dde4337f402dd5f00d761991d1a9d8/.github/media/styling.svg"
  80. }
  81. }