mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-21 05:02:39 +08:00
84 lines
1.9 KiB
JSON
84 lines
1.9 KiB
JSON
{
|
|
"name": "@storybook/preact",
|
|
"version": "7.0.0-alpha.31",
|
|
"description": "Storybook Preact renderer",
|
|
"keywords": [
|
|
"storybook"
|
|
],
|
|
"homepage": "https://github.com/storybookjs/storybook/tree/main/renderers/preact",
|
|
"bugs": {
|
|
"url": "https://github.com/storybookjs/storybook/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/storybookjs/storybook.git",
|
|
"directory": "renderers/preact"
|
|
},
|
|
"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/**/*",
|
|
"README.md",
|
|
"*.js",
|
|
"*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"check": "tsc --noEmit",
|
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
},
|
|
"dependencies": {
|
|
"@storybook/addons": "7.0.0-alpha.31",
|
|
"@storybook/core-client": "7.0.0-alpha.31",
|
|
"@storybook/csf": "0.0.2--canary.0899bb7.0",
|
|
"@storybook/store": "7.0.0-alpha.31",
|
|
"global": "^4.4.0",
|
|
"react": "16.14.0",
|
|
"react-dom": "16.14.0",
|
|
"ts-dedent": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"preact": "^10.5.13",
|
|
"typescript": "~4.6.3"
|
|
},
|
|
"peerDependencies": {
|
|
"preact": "^8.0.0||^10.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"bundler": {
|
|
"entries": [
|
|
"./src/index.ts",
|
|
"./src/config.ts"
|
|
],
|
|
"platform": "browser"
|
|
},
|
|
"gitHead": "02c013c33186479017098d532a18ff8654b91f1f"
|
|
}
|