mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-02 05:03:44 +08:00
107 lines
2.7 KiB
JSON
107 lines
2.7 KiB
JSON
{
|
||
"name": "@storybook/addon-viewport",
|
||
"version": "7.0.0-alpha.33",
|
||
"description": "Build responsive components by adjusting Storybook’s viewport size and orientation",
|
||
"keywords": [
|
||
"addon",
|
||
"storybook",
|
||
"style",
|
||
"essentials"
|
||
],
|
||
"homepage": "https://github.com/storybookjs/storybook/tree/main/addons/viewport",
|
||
"bugs": {
|
||
"url": "https://github.com/storybookjs/storybook/issues"
|
||
},
|
||
"repository": {
|
||
"type": "git",
|
||
"url": "https://github.com/storybookjs/storybook.git",
|
||
"directory": "addons/viewport"
|
||
},
|
||
"funding": {
|
||
"type": "opencollective",
|
||
"url": "https://opencollective.com/storybook"
|
||
},
|
||
"license": "MIT",
|
||
"exports": {
|
||
".": {
|
||
"require": "./dist/index.js",
|
||
"import": "./dist/index.mjs",
|
||
"types": "./dist/index.d.ts"
|
||
},
|
||
"./manager": {
|
||
"require": "./dist/manager.js",
|
||
"import": "./dist/manager.mjs",
|
||
"types": "./dist/manager.d.ts"
|
||
},
|
||
"./preview": {
|
||
"require": "./dist/preview.ts",
|
||
"import": "./dist/preview.mjs",
|
||
"types": "./dist/preview.d.ts"
|
||
},
|
||
"./register": {
|
||
"require": "./dist/manager.js",
|
||
"import": "./dist/manager.mjs",
|
||
"types": "./dist/manager.d.ts"
|
||
},
|
||
"./package.json": "./package.json"
|
||
},
|
||
"main": "dist/index.js",
|
||
"module": "dist/index.mjs",
|
||
"types": "dist/index.d.ts",
|
||
"files": [
|
||
"dist/**/*",
|
||
"README.md",
|
||
"*.js",
|
||
"*.d.ts"
|
||
],
|
||
"scripts": {
|
||
"check": "../../../scripts/node_modules/.bin/tsc --noEmit",
|
||
"prep": "../../../scripts/prepare/bundle.ts"
|
||
},
|
||
"dependencies": {
|
||
"@storybook/addons": "7.0.0-alpha.33",
|
||
"@storybook/api": "7.0.0-alpha.33",
|
||
"@storybook/client-logger": "7.0.0-alpha.33",
|
||
"@storybook/components": "7.0.0-alpha.33",
|
||
"@storybook/core-events": "7.0.0-alpha.33",
|
||
"@storybook/theming": "7.0.0-alpha.33",
|
||
"global": "^4.4.0",
|
||
"memoizerific": "^1.11.3",
|
||
"prop-types": "^15.7.2"
|
||
},
|
||
"devDependencies": {
|
||
"typescript": "~4.6.3"
|
||
},
|
||
"peerDependencies": {
|
||
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
||
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
||
},
|
||
"peerDependenciesMeta": {
|
||
"react": {
|
||
"optional": true
|
||
},
|
||
"react-dom": {
|
||
"optional": true
|
||
}
|
||
},
|
||
"publishConfig": {
|
||
"access": "public"
|
||
},
|
||
"bundler": {
|
||
"entries": [
|
||
"./src/index.ts",
|
||
"./src/models/index.ts",
|
||
"./src/manager.tsx",
|
||
"./src/preview.ts"
|
||
]
|
||
},
|
||
"gitHead": "5da5b0fabd04cc5cd5771e8242a960f05d03234a",
|
||
"storybook": {
|
||
"displayName": "Viewport",
|
||
"icon": "https://user-images.githubusercontent.com/263385/101991678-48cdf300-3c7c-11eb-9764-f8af293c1b28.png",
|
||
"unsupportedFrameworks": [
|
||
"react-native"
|
||
]
|
||
}
|
||
}
|