@readme/markdown 6.66.0 → 6.67.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Code/index.jsx +3 -3
- package/components/CodeTabs/index.jsx +28 -3
- package/components/Div.jsx +31 -0
- package/components/index.js +1 -0
- package/dist/main.js +123162 -26502
- package/dist/main.node.js +133181 -26684
- package/package.json +12 -3
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@readme/markdown",
|
|
3
3
|
"description": "ReadMe's React-based Markdown parser",
|
|
4
4
|
"author": "Rafe Goldberg <rafe@readme.io>",
|
|
5
|
-
"version": "6.
|
|
5
|
+
"version": "6.67.0-beta.2",
|
|
6
6
|
"main": "dist/main.node.js",
|
|
7
7
|
"browser": "dist/main.js",
|
|
8
8
|
"files": [
|
|
@@ -52,17 +52,21 @@
|
|
|
52
52
|
"remark-slug": "^6.0.0",
|
|
53
53
|
"remark-stringify": "^8.0.0",
|
|
54
54
|
"trim": "^1.0.1",
|
|
55
|
-
"unified": "
|
|
55
|
+
"unified": "9.2.0",
|
|
56
56
|
"unist-util-flatmap": "^1.0.0",
|
|
57
57
|
"unist-util-map": "^3.1.2",
|
|
58
58
|
"unist-util-select": "^4.0.0",
|
|
59
59
|
"unist-util-visit": "^4.1.1"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
+
"@mdx-js/mdx": "^1.6.22",
|
|
63
|
+
"@mdx-js/react": "^1.6.22",
|
|
64
|
+
"@mdx-js/runtime": "^1.6.22",
|
|
62
65
|
"@readme/variable": "^15.1.3",
|
|
63
66
|
"@tippyjs/react": "^4.1.0",
|
|
64
67
|
"react": "^16.14.0",
|
|
65
|
-
"react-dom": "^16.14.0"
|
|
68
|
+
"react-dom": "^16.14.0",
|
|
69
|
+
"remark-mdx": "^1.6.22"
|
|
66
70
|
},
|
|
67
71
|
"devDependencies": {
|
|
68
72
|
"@babel/core": "^7.19.3",
|
|
@@ -83,8 +87,11 @@
|
|
|
83
87
|
"@semantic-release/git": "^10.0.1",
|
|
84
88
|
"@testing-library/jest-dom": "^5.16.5",
|
|
85
89
|
"@testing-library/react": "^12.1.2",
|
|
90
|
+
"@tippyjs/react": "^4.2.6",
|
|
91
|
+
"assert": "^2.0.0",
|
|
86
92
|
"babel-jest": "^29.2.1",
|
|
87
93
|
"babel-loader": "^8.2.5",
|
|
94
|
+
"browserify-fs": "^1.0.0",
|
|
88
95
|
"codemirror": "^5.54.0",
|
|
89
96
|
"core-js": "^3.25.5",
|
|
90
97
|
"css-loader": "^6.7.1",
|
|
@@ -105,9 +112,11 @@
|
|
|
105
112
|
"regenerator-runtime": "^0.13.10",
|
|
106
113
|
"sass-loader": "^13.1.0",
|
|
107
114
|
"semantic-release": "^19.0.5",
|
|
115
|
+
"stream-browserify": "^3.0.0",
|
|
108
116
|
"string.prototype.trimend": "^1.0.5",
|
|
109
117
|
"stylelint": "^14.16.1",
|
|
110
118
|
"terser-webpack-plugin": "^5.3.6",
|
|
119
|
+
"util": "^0.12.5",
|
|
111
120
|
"webpack": "^5.74.0",
|
|
112
121
|
"webpack-cli": "^4.10.0",
|
|
113
122
|
"webpack-dev-server": "^4.11.1",
|