UNPKG

4.3 kBJSONView Raw
1{
2 "name": "@storybook/addon-docs",
3 "version": "7.0.20",
4 "description": "Document component usage and properties in Markdown",
5 "keywords": [
6 "addon",
7 "notes",
8 "documentation",
9 "storybook",
10 "essentials",
11 "organize"
12 ],
13 "homepage": "https://github.com/storybookjs/storybook/tree/next/code/addons/docs",
14 "bugs": {
15 "url": "https://github.com/storybookjs/storybook/issues"
16 },
17 "repository": {
18 "type": "git",
19 "url": "https://github.com/storybookjs/storybook.git",
20 "directory": "code/addons/docs"
21 },
22 "funding": {
23 "type": "opencollective",
24 "url": "https://opencollective.com/storybook"
25 },
26 "license": "MIT",
27 "exports": {
28 ".": {
29 "node": "./dist/index.js",
30 "types": "./dist/index.d.ts",
31 "require": "./dist/index.js",
32 "import": "./dist/index.mjs"
33 },
34 "./preview": {
35 "types": "./dist/preview.d.ts",
36 "require": "./dist/preview.js",
37 "import": "./dist/preview.mjs"
38 },
39 "./preset": {
40 "types": "./dist/preset.d.ts",
41 "require": "./dist/preset.js"
42 },
43 "./blocks": {
44 "types": "./dist/blocks.d.ts",
45 "require": "./dist/blocks.js",
46 "import": "./dist/blocks.mjs"
47 },
48 "./dist/preview": {
49 "types": "./dist/preview.d.ts",
50 "require": "./dist/preview.js",
51 "import": "./dist/preview.mjs"
52 },
53 "./dist/preset": {
54 "types": "./dist/preset.d.ts",
55 "require": "./dist/preset.js"
56 },
57 "./dist/shims/mdx-react-shim": {
58 "types": "./dist/shims/mdx-react-shim.d.ts",
59 "require": "./dist/shims/mdx-react-shim.js",
60 "import": "./dist/shims/mdx-react-shim.mjs"
61 },
62 "./mdx-react-shim": {
63 "types": "./dist/shims/mdx-react-shim.d.ts",
64 "require": "./dist/shims/mdx-react-shim.js",
65 "import": "./dist/shims/mdx-react-shim.mjs"
66 },
67 "./svelte/HOC.svelte": "./svelte/HOC.svelte",
68 "./ember": "./ember/index.js",
69 "./ember/index.js": "./ember/index.js",
70 "./angular": "./angular/index.js",
71 "./angular/index.js": "./angular/index.js",
72 "./web-components/index.js": "./web-components/index.js",
73 "./jest-transform-mdx": "./jest-transform-mdx.js",
74 "./package.json": "./package.json"
75 },
76 "main": "dist/index.js",
77 "module": "dist/index.mjs",
78 "types": "dist/index.d.ts",
79 "files": [
80 "dist/**/*",
81 "angular/**/*",
82 "common/**/*",
83 "ember/**/*",
84 "html/**/*",
85 "svelte/**/*",
86 "postinstall/**/*",
87 "react/**/*",
88 "vue/**/*",
89 "web-components/**/*",
90 "lit/**/*",
91 "README.md",
92 "*.js",
93 "*.d.ts"
94 ],
95 "scripts": {
96 "check": "../../../scripts/node_modules/.bin/tsc --noEmit",
97 "prep": "../../../scripts/prepare/bundle.ts"
98 },
99 "dependencies": {
100 "@babel/core": "^7.20.2",
101 "@babel/plugin-transform-react-jsx": "^7.19.0",
102 "@jest/transform": "^29.3.1",
103 "@mdx-js/react": "^2.1.5",
104 "@storybook/blocks": "7.0.20",
105 "@storybook/client-logger": "7.0.20",
106 "@storybook/components": "7.0.20",
107 "@storybook/csf-plugin": "7.0.20",
108 "@storybook/csf-tools": "7.0.20",
109 "@storybook/global": "^5.0.0",
110 "@storybook/mdx2-csf": "^1.0.0",
111 "@storybook/node-logger": "7.0.20",
112 "@storybook/postinstall": "7.0.20",
113 "@storybook/preview-api": "7.0.20",
114 "@storybook/react-dom-shim": "7.0.20",
115 "@storybook/theming": "7.0.20",
116 "@storybook/types": "7.0.20",
117 "fs-extra": "^11.1.0",
118 "remark-external-links": "^8.0.0",
119 "remark-slug": "^6.0.0",
120 "ts-dedent": "^2.0.0"
121 },
122 "devDependencies": {
123 "react": "^16.14.0",
124 "react-dom": "^16.8.0",
125 "typescript": "~4.9.3"
126 },
127 "peerDependencies": {
128 "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
129 "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
130 },
131 "publishConfig": {
132 "access": "public"
133 },
134 "bundler": {
135 "entries": [
136 "./src/index.ts",
137 "./src/preset.ts",
138 "./src/preview.ts",
139 "./src/blocks.ts",
140 "./src/shims/mdx-react-shim.ts"
141 ],
142 "externals": [
143 "@storybook/mdx1-csf"
144 ]
145 },
146 "gitHead": "9fb2573aa274f3f69d3358050e8df9c903e8245f",
147 "storybook": {
148 "displayName": "Docs",
149 "icon": "https://user-images.githubusercontent.com/263385/101991672-48355c80-3c7c-11eb-82d9-95fa12438f64.png",
150 "unsupportedFrameworks": [
151 "react-native"
152 ]
153 }
154}