mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-21 05:02:39 +08:00
100 lines
2.4 KiB
JSON
100 lines
2.4 KiB
JSON
{
|
|
"name": "@storybook/addon-toolbars",
|
|
"version": "7.0.0-alpha.31",
|
|
"description": "Create your own toolbar items that control story rendering",
|
|
"keywords": [
|
|
"addon",
|
|
"storybook",
|
|
"theming",
|
|
"i18n",
|
|
"internationalization",
|
|
"test",
|
|
"essentials"
|
|
],
|
|
"homepage": "https://github.com/storybookjs/storybook/tree/next/addons/toolbars",
|
|
"bugs": {
|
|
"url": "https://github.com/storybookjs/storybook/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/storybookjs/storybook.git",
|
|
"directory": "addons/toolbars"
|
|
},
|
|
"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"
|
|
},
|
|
"./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": "tsc --noEmit",
|
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
},
|
|
"dependencies": {
|
|
"@storybook/addons": "7.0.0-alpha.31",
|
|
"@storybook/api": "7.0.0-alpha.31",
|
|
"@storybook/client-logger": "7.0.0-alpha.31",
|
|
"@storybook/components": "7.0.0-alpha.31",
|
|
"@storybook/theming": "7.0.0-alpha.31"
|
|
},
|
|
"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/manager.tsx"
|
|
],
|
|
"platform": "browser"
|
|
},
|
|
"gitHead": "02c013c33186479017098d532a18ff8654b91f1f",
|
|
"storybook": {
|
|
"displayName": "Toolbars",
|
|
"icon": "https://user-images.githubusercontent.com/263385/101991677-48cdf300-3c7c-11eb-93b4-19b0e3366959.png",
|
|
"unsupportedFrameworks": [
|
|
"react-native"
|
|
]
|
|
}
|
|
}
|