@readme/markdown 14.14.2 → 15.0.1
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/dist/368.node.js +1 -393
- package/dist/368.node.js.map +1 -1
- package/dist/lib/micromark/loose-html-entities/index.d.ts +5 -4
- package/dist/lib/utils/mdxish/mdxish-render-utils.d.ts +1 -1
- package/dist/lib/utils/mdxish/mdxish-variables.d.ts +8 -0
- package/dist/main.js +489 -193
- package/dist/main.node.js +482 -186
- package/dist/main.node.js.map +1 -1
- package/dist/render-fixture.node.js +480 -184
- package/dist/render-fixture.node.js.map +1 -1
- package/package.json +4 -2
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": "
|
|
5
|
+
"version": "15.0.1",
|
|
6
6
|
"main": "dist/main.node.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"browser": "dist/main.js",
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@mdx-js/mdx": "^3.0.0",
|
|
50
50
|
"@readme/emojis": "^6.0.0",
|
|
51
|
-
"@readme/syntax-highlighter": "^15.0.0-beta.0",
|
|
52
51
|
"@readme/variable": "^18.0.0",
|
|
53
52
|
"copy-to-clipboard": "^3.3.2",
|
|
54
53
|
"debug": "^4.3.4",
|
|
@@ -81,6 +80,7 @@
|
|
|
81
80
|
"micromark-extension-mdxjs-esm": "^3.0.0",
|
|
82
81
|
"micromark-util-character": "^2.1.1",
|
|
83
82
|
"micromark-util-html-tag-name": "^2.0.1",
|
|
83
|
+
"micromark-util-subtokenize": "2.0.4",
|
|
84
84
|
"micromark-util-symbol": "^2.0.1",
|
|
85
85
|
"path-browserify": "^1.0.1",
|
|
86
86
|
"postcss": "^8.5.1",
|
|
@@ -112,6 +112,7 @@
|
|
|
112
112
|
},
|
|
113
113
|
"peerDependencies": {
|
|
114
114
|
"@mdx-js/react": "^3.0.0",
|
|
115
|
+
"@readme/syntax-highlighter": "^16.0.0",
|
|
115
116
|
"@tippyjs/react": "^4.1.0",
|
|
116
117
|
"acorn": "v8.13.0",
|
|
117
118
|
"acorn-jsx": "^5.3.2",
|
|
@@ -135,6 +136,7 @@
|
|
|
135
136
|
"@commitlint/config-conventional": "^19",
|
|
136
137
|
"@readme/eslint-config": "^14.0.0",
|
|
137
138
|
"@readme/markdown-legacy": "npm:@readme/markdown@^6.87.1",
|
|
139
|
+
"@readme/syntax-highlighter": "^16.0.0",
|
|
138
140
|
"@semantic-release/changelog": "^6.0.3",
|
|
139
141
|
"@semantic-release/git": "^10.0.1",
|
|
140
142
|
"@testing-library/jest-dom": "^6.9.1",
|