mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:21:15 +08:00
106 lines
2.6 KiB
JSON
106 lines
2.6 KiB
JSON
{
|
|
"name": "@storybook/react",
|
|
"version": "7.0.0-alpha.28",
|
|
"description": "Storybook React renderer",
|
|
"keywords": [
|
|
"storybook"
|
|
],
|
|
"homepage": "https://github.com/storybookjs/storybook/tree/main/renderers/react",
|
|
"bugs": {
|
|
"url": "https://github.com/storybookjs/storybook/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/storybookjs/storybook.git",
|
|
"directory": "renderers/react"
|
|
},
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/storybook"
|
|
},
|
|
"license": "MIT",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./preview": {
|
|
"require": "./dist/config.js",
|
|
"import": "./dist/config.mjs",
|
|
"types": "./dist/config.d.ts"
|
|
},
|
|
"./package.json": {
|
|
"require": "./package.json",
|
|
"import": "./package.json",
|
|
"types": "./package.json"
|
|
}
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist/**/*",
|
|
"types/**/*",
|
|
"README.md",
|
|
"*.js",
|
|
"*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"check": "tsc --noEmit",
|
|
"prepare": "../../../scripts/prepare/bundle.ts"
|
|
},
|
|
"dependencies": {
|
|
"@storybook/addons": "7.0.0-alpha.28",
|
|
"@storybook/client-logger": "7.0.0-alpha.28",
|
|
"@storybook/core-client": "7.0.0-alpha.28",
|
|
"@storybook/csf": "0.0.2--canary.0899bb7.0",
|
|
"@storybook/docs-tools": "7.0.0-alpha.28",
|
|
"@storybook/store": "7.0.0-alpha.28",
|
|
"@types/estree": "^0.0.51",
|
|
"@types/node": "^14.14.20 || ^16.0.0",
|
|
"acorn": "^7.4.1",
|
|
"acorn-jsx": "^5.3.1",
|
|
"acorn-walk": "^7.2.0",
|
|
"core-js": "^3.8.2",
|
|
"escodegen": "^2.0.0",
|
|
"global": "^4.4.0",
|
|
"html-tags": "^3.1.0",
|
|
"lodash": "^4.17.21",
|
|
"prop-types": "^15.7.2",
|
|
"react-element-to-jsx-string": "^14.3.4",
|
|
"ts-dedent": "^2.0.0",
|
|
"util-deprecate": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.11.5",
|
|
"@types/util-deprecate": "^1.0.0",
|
|
"jest-specific-snapshot": "^4.0.0",
|
|
"require-from-string": "^2.0.2",
|
|
"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": {
|
|
"typescript": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"bundler": {
|
|
"entries": [
|
|
"./src/index.ts",
|
|
"./src/config.ts"
|
|
],
|
|
"platform": "browser"
|
|
},
|
|
"gitHead": "941b85ce04c2e7c4328edb3568c1dece36dfbcf3"
|
|
}
|