Update package.json

This commit is contained in:
Ian VanSchooten 2022-08-13 00:37:49 -04:00
parent f80ef5f40a
commit bc4828ac98

View File

@ -1,17 +1,22 @@
{ {
"name": "@storybook/builder-vite", "name": "@storybook/builder-vite",
"version": "0.2.2", "version": "7.0.0-alpha.19",
"description": "A plugin to run and build Storybooks with Vite", "description": "A plugin to run and build Storybooks with Vite",
"main": "dist/index.js", "main": "dist/cjs/index.js",
"types": "dist/index.d.ts", "module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"author": "Eirik Sletteberg", "author": "Eirik Sletteberg",
"license": "MIT", "license": "MIT",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/storybookjs/builder-vite.git", "url": "https://github.com/storybookjs/storybook.git",
"directory": "packages/builder-vite" "directory": "code/lib/builder-vite"
},
"homepage": "https://github.com/storybookjs/storybook/tree/main/code/lib/builder-vite/#readme",
"scripts": {
"check": "tsc --noEmit",
"prepare": "node ../../../scripts/prepare.js"
}, },
"homepage": "https://github.com/storybookjs/builder-vite/#readme",
"dependencies": { "dependencies": {
"@joshwooding/vite-plugin-react-docgen-typescript": "0.0.5", "@joshwooding/vite-plugin-react-docgen-typescript": "0.0.5",
"@storybook/addons": "7.0.0-alpha.19", "@storybook/addons": "7.0.0-alpha.19",
@ -52,5 +57,6 @@
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
} },
"gitHead": "74bdb53f67dd59bae2661c668d2d5d4296113281"
} }