|
| 1 | +{ |
| 2 | + "name": "storybook-addon-kit", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "everything you need to build a Storybook addon", |
| 5 | + "keywords": [ |
| 6 | + "storybook-addons", |
| 7 | + "style", |
| 8 | + "test" |
| 9 | + ], |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "https://github.com/storybookjs/storybook-addon-kit" |
| 13 | + }, |
| 14 | + "author": "winkerVSbecks", |
| 15 | + "license": "MIT", |
| 16 | + "main": "dist/cjs/index.js", |
| 17 | + "module": "dist/esm/index.js", |
| 18 | + "types": "dist/ts/index.d.ts", |
| 19 | + "files": [ |
| 20 | + "dist/**/*", |
| 21 | + "README.md", |
| 22 | + "*.js", |
| 23 | + "*.d.ts" |
| 24 | + ], |
| 25 | + "scripts": { |
| 26 | + "clean": "rimraf ./dist", |
| 27 | + "buildBabel": "concurrently \"yarn buildBabel:cjs\" \"yarn buildBabel:esm\"", |
| 28 | + "buildBabel:cjs": "babel ./src -d ./dist/cjs --extensions \".js,.jsx,.ts,.tsx\"", |
| 29 | + "buildBabel:esm": "babel ./src -d ./dist/esm --env-name esm --extensions \".js,.jsx,.ts,.tsx\"", |
| 30 | + "buildTsc": "tsc --declaration --emitDeclarationOnly --outDir ./dist/ts", |
| 31 | + "prebuild": "yarn clean", |
| 32 | + "build": "concurrently \"yarn buildBabel\" \"yarn buildTsc\"", |
| 33 | + "build:watch": "concurrently \"yarn buildBabel:esm -- --watch\" \"yarn buildTsc -- --watch\"", |
| 34 | + "test": "echo \"Error: no test specified\" && exit 1", |
| 35 | + "storybook": "start-storybook -p 6006", |
| 36 | + "start": "concurrently \"yarn build:watch\" \"yarn storybook -- --no-manager-cache --quiet\"", |
| 37 | + "build-storybook": "build-storybook", |
| 38 | + "prerelease": "zx scripts/prepublish-checks.mjs", |
| 39 | + "release": "yarn build && auto shipit", |
| 40 | + "eject-ts": "zx scripts/eject-typescript.mjs" |
| 41 | + }, |
| 42 | + "devDependencies": { |
| 43 | + "@babel/cli": "^7.12.1", |
| 44 | + "@babel/core": "^7.12.3", |
| 45 | + "@babel/preset-env": "^7.12.1", |
| 46 | + "@babel/preset-react": "^7.12.5", |
| 47 | + "@babel/preset-typescript": "^7.13.0", |
| 48 | + "@storybook/addon-essentials": "^6.4.0", |
| 49 | + "@storybook/react": "^6.4.0", |
| 50 | + "auto": "^10.3.0", |
| 51 | + "babel-loader": "^8.1.0", |
| 52 | + "boxen": "^5.0.1", |
| 53 | + "concurrently": "^6.2.0", |
| 54 | + "dedent": "^0.7.0", |
| 55 | + "prettier": "^2.3.1", |
| 56 | + "prop-types": "^15.7.2", |
| 57 | + "react": "^17.0.1", |
| 58 | + "react-dom": "^17.0.1", |
| 59 | + "rimraf": "^3.0.2", |
| 60 | + "typescript": "^4.2.4", |
| 61 | + "zx": "^1.14.1" |
| 62 | + }, |
| 63 | + "peerDependencies": { |
| 64 | + "@storybook/addons": "^6.4.0", |
| 65 | + "@storybook/api": "^6.4.0", |
| 66 | + "@storybook/components": "^6.4.0", |
| 67 | + "@storybook/core-events": "^6.4.0", |
| 68 | + "@storybook/theming": "^6.4.0", |
| 69 | + "react": "^16.8.0 || ^17.0.0", |
| 70 | + "react-dom": "^16.8.0 || ^17.0.0" |
| 71 | + }, |
| 72 | + "peerDependenciesMeta": { |
| 73 | + "react": { |
| 74 | + "optional": true |
| 75 | + }, |
| 76 | + "react-dom": { |
| 77 | + "optional": true |
| 78 | + } |
| 79 | + }, |
| 80 | + "publishConfig": { |
| 81 | + "access": "public" |
| 82 | + }, |
| 83 | + "storybook": { |
| 84 | + "displayName": "Addon Kit", |
| 85 | + "supportedFrameworks": [ |
| 86 | + "react", |
| 87 | + "vue", |
| 88 | + "angular" |
| 89 | + ], |
| 90 | + "icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png" |
| 91 | + } |
| 92 | +} |
0 commit comments