mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
101 lines
2.4 KiB
JSON
101 lines
2.4 KiB
JSON
{
|
|
"name": "@storybook/vue3",
|
|
"version": "9.0.0-alpha.11",
|
|
"description": "Storybook Vue 3 renderer",
|
|
"keywords": [
|
|
"storybook"
|
|
],
|
|
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/renderers/vue3",
|
|
"bugs": {
|
|
"url": "https://github.com/storybookjs/storybook/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/storybookjs/storybook.git",
|
|
"directory": "code/renderers/vue3"
|
|
},
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/storybook"
|
|
},
|
|
"license": "MIT",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./experimental-playwright": {
|
|
"types": "./dist/playwright.d.ts",
|
|
"import": "./dist/playwright.mjs",
|
|
"require": "./dist/playwright.js"
|
|
},
|
|
"./preset": "./preset.js",
|
|
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
|
|
"./dist/entry-preview-docs.mjs": "./dist/entry-preview-docs.mjs",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"dist/index.d.ts"
|
|
],
|
|
"experimental-playwright": [
|
|
"dist/playwright.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"template/cli/**/*",
|
|
"README.md",
|
|
"*.js",
|
|
"*.d.ts",
|
|
"!src/**/*"
|
|
],
|
|
"scripts": {
|
|
"check": "vue-tsc --noEmit",
|
|
"prep": "jiti ../../../scripts/prepare/bundle.ts"
|
|
},
|
|
"dependencies": {
|
|
"@storybook/global": "^5.0.0",
|
|
"@vue/compiler-core": "^3.0.0",
|
|
"ts-dedent": "^2.0.0",
|
|
"type-fest": "~2.19",
|
|
"vue-component-type-helpers": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"@digitak/esrun": "^3.2.2",
|
|
"@testing-library/vue": "^8.0.0",
|
|
"@types/prettier": "^3.0.0",
|
|
"@vitejs/plugin-vue": "^4.4.0",
|
|
"typescript": "^5.7.3",
|
|
"vue": "^3.2.47",
|
|
"vue-tsc": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"storybook": "workspace:^",
|
|
"vue": "^3.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"bundler": {
|
|
"entries": [
|
|
"./src/index.ts",
|
|
"./src/preset.ts",
|
|
"./src/entry-preview.ts",
|
|
"./src/entry-preview-docs.ts",
|
|
"./src/playwright.ts"
|
|
],
|
|
"platform": "browser"
|
|
},
|
|
"gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae16"
|
|
}
|