mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:21:07 +08:00
96 lines
2.2 KiB
JSON
96 lines
2.2 KiB
JSON
{
|
|
"name": "@storybook/vue",
|
|
"version": "7.0.0-alpha.56",
|
|
"description": "Storybook Vue renderer",
|
|
"keywords": [
|
|
"storybook"
|
|
],
|
|
"homepage": "https://github.com/storybookjs/storybook/tree/main/renderers/vue",
|
|
"bugs": {
|
|
"url": "https://github.com/storybookjs/storybook/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/storybookjs/storybook.git",
|
|
"directory": "renderers/vue"
|
|
},
|
|
"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/**/*",
|
|
"template/**/*",
|
|
"README.md",
|
|
"*.js",
|
|
"*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"check": "vue-tsc --noEmit",
|
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
},
|
|
"dependencies": {
|
|
"@storybook/client-logger": "7.0.0-alpha.56",
|
|
"@storybook/core-client": "7.0.0-alpha.56",
|
|
"@storybook/docs-tools": "7.0.0-alpha.56",
|
|
"@storybook/preview-api": "7.0.0-alpha.56",
|
|
"@storybook/types": "7.0.0-alpha.56",
|
|
"global": "^4.4.0",
|
|
"react": "16.14.0",
|
|
"react-dom": "16.14.0",
|
|
"ts-dedent": "^2.0.0",
|
|
"type-fest": "2.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^4.9.3",
|
|
"vue": "2.6.14",
|
|
"vue-tsc": "^1.0.9"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/core": "*",
|
|
"babel-loader": "^7.0.0 || ^8.0.0",
|
|
"css-loader": "*",
|
|
"vue": "^2.6.8"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"babel-loader": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"bundler": {
|
|
"entries": [
|
|
"./src/index.ts",
|
|
"./src/config.ts"
|
|
],
|
|
"platform": "browser"
|
|
},
|
|
"gitHead": "c8e9a862bb83c4a0d6b5975e795b4ca7f7ff7bc2"
|
|
}
|