-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.03 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-readme-printer",
"version": "1.6.1",
"description": "Provides a function to load a readme file from github repositories and a React component to automatically load and convert markdown to jsx",
"scripts": {
"rollup": "rollup -c",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"publish_npmjs": "npm run rollup && npm publish --access=public --scope=unscoped"
},
"author": {
"name": "Axel Milliery",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-links": "^6.4.14",
"@storybook/react": "^6.4.14",
"babel": "^6.23.0",
"babel-loader": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"npmrc": "^1.1.1",
"rollup": "^2.65.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2"
},
"peerDependencies": {
"axios": "^0.25.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/axelmy318/react-readme-printer.git"
},
"keywords": [
"npm",
"npmjs",
"git",
"github",
"javascript",
"react",
"reactjs",
"readme",
"markdown",
"md",
"load",
"print",
"markdown-to-jsx",
"jsx",
"convert",
"convert-to-jsx"
],
"dependencies": {
"react-markdown": "^8.0.0",
"rehype-highlight": "^5.0.2",
"rehype-inline": "2.0.0",
"rehype-inline-svg": "1.1.4",
"rehype-raw": "6.1.1",
"remark-gfm": "^3.0.1"
}
}