-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "storybook-addon-docusaurus",
"version": "0.3.3",
"description": "Storybook addon to aid in developing with Docusaurus",
"keywords": [
"storybook-addons",
"docusaurus"
],
"homepage": "https://github.com/jodyheavener/storybook-docusaurus/tree/main/addon",
"repository": {
"type": "git",
"url": "https://github.com/jodyheavener/storybook-docusaurus",
"directory": "addon"
},
"license": "MIT",
"author": "Jody Heavener <[email protected]>",
"exports": {
".": {
"node": "./dist/index.cjs",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./preset": {
"require": "./dist/preset.cjs",
"import": "./dist/preset.mjs"
},
"./preview": {
"require": "./dist/preview.cjs",
"import": "./dist/preview.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist/**/*",
"*.js",
"*.d.ts"
],
"scripts": {
"build": "yarn --cwd=\"..\" compile --build --package addon",
"watch": "yarn --cwd=\"..\" compile --watch --package addon",
"prepack": "cp ../LICENSE LICENSE"
},
"dependencies": {
"@storybook/node-logger": "^6.5.16"
},
"devDependencies": {
"@docusaurus/core": "^2.3.1",
"@docusaurus/types": "^2.3.1",
"@storybook/react": "^6.5.16",
"react-helmet-async": "^1.3.0",
"react-router-dom": "^5.3.3",
"webpack": "^5.73.0"
},
"peerDependencies": {
"@docusaurus/core": "^2.3.1",
"react-helmet-async": "^1.3.0",
"react-router-dom": "^5.3.3"
},
"storybook": {
"displayName": "Docusaurus",
"icon": "https://raw.githubusercontent.com/facebook/docusaurus/main/website/static/img/docusaurus.png"
}
}