storybook/code/ui/manager/package.json
Michael Shilman c466d4f77c v7.0.0-beta.9
2022-12-16 00:15:33 +08:00

105 lines
2.8 KiB
JSON

{
"name": "@storybook/manager",
"version": "7.0.0-beta.9",
"description": "Core Storybook UI",
"keywords": [
"storybook"
],
"homepage": "https://github.com/storybookjs/storybook/tree/main/code/ui/manager",
"bugs": {
"url": "https://github.com/storybookjs/storybook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/storybook.git",
"directory": "code/ui/manager"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./dist/runtime": {
"require": "./dist/runtime.js",
"import": "./dist/runtime.mjs",
"types": "./dist/runtime.d.ts"
},
"./dist/globals": {
"require": "./dist/globals.js",
"import": "./dist/globals.mjs",
"types": "./dist/globals.d.ts"
},
"./paths": "./paths.js",
"./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"
},
"devDependencies": {
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@storybook/addons": "7.0.0-beta.9",
"@storybook/api": "7.0.0-beta.9",
"@storybook/channel-postmessage": "7.0.0-beta.9",
"@storybook/channel-websocket": "7.0.0-beta.9",
"@storybook/channels": "7.0.0-beta.9",
"@storybook/client-logger": "7.0.0-beta.9",
"@storybook/components": "7.0.0-beta.9",
"@storybook/core-events": "7.0.0-beta.9",
"@storybook/manager-api": "7.0.0-beta.9",
"@storybook/router": "7.0.0-beta.9",
"@storybook/theming": "7.0.0-beta.9",
"@storybook/types": "7.0.0-beta.9",
"@testing-library/react": "^11.2.2",
"@types/semver": "^7.3.4",
"copy-to-clipboard": "^3.3.1",
"downshift": "^6.0.15",
"enzyme": "^3.11.0",
"fs-extra": "^9.0.1",
"fuse.js": "^3.6.1",
"global": "^4.4.0",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.1.3",
"memoizerific": "^1.11.3",
"polished": "^4.2.2",
"qs": "^6.10.0",
"react": "^16.14.0",
"react-dom": "^16.8.0",
"react-draggable": "^4.4.3",
"react-helmet-async": "^1.0.7",
"react-sizeme": "^3.0.1",
"resolve-from": "^5.0.0",
"semver": "^7.3.7",
"store2": "^2.14.2",
"ts-dedent": "^2.0.0",
"typescript": "~4.9.3"
},
"publishConfig": {
"access": "public"
},
"bundler": {
"pre": "./scripts/generate-exports-file.ts",
"entries": [
"./src/index.tsx",
"./src/globals.ts",
"./src/runtime.ts"
]
},
"gitHead": "5340574d89a799ec10959edc16ca140852cf355c"
}