markdown-to-jsx 9.2.0 → 9.3.0

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "markdown-to-jsx",
3
- "description": "A very fast and versatile markdown toolchain. AST, React, React Native, Markdown, and HTML output available with full customization.",
3
+ "description": "A very fast and versatile markdown toolchain. AST, React, React Native, SolidJS, Vue, Markdown, and HTML output available with full customization.",
4
4
  "homepage": "https://markdown-to-jsx.quantizor.dev",
5
5
  "license": "MIT",
6
- "version": "9.2.0",
6
+ "version": "9.3.0",
7
7
  "publishConfig": {
8
8
  "access": "public",
9
9
  "mangle": {
@@ -25,6 +25,12 @@
25
25
  "react",
26
26
  "preact",
27
27
  "jsx",
28
+ "vue",
29
+ "vuejs",
30
+ "vue3",
31
+ "solid",
32
+ "solidjs",
33
+ "react-native",
28
34
  "html"
29
35
  ],
30
36
  "author": "Evan Jacobs <ej@quantizor.dev> (https://quantizor.dev)",
@@ -90,6 +96,26 @@
90
96
  "types": "./dist/native.d.cts",
91
97
  "default": "./dist/native.cjs"
92
98
  }
99
+ },
100
+ "./solid": {
101
+ "import": {
102
+ "types": "./dist/solid.d.ts",
103
+ "default": "./dist/solid.js"
104
+ },
105
+ "require": {
106
+ "types": "./dist/solid.d.cts",
107
+ "default": "./dist/solid.cjs"
108
+ }
109
+ },
110
+ "./vue": {
111
+ "import": {
112
+ "types": "./dist/vue.d.ts",
113
+ "default": "./dist/vue.js"
114
+ },
115
+ "require": {
116
+ "types": "./dist/vue.d.cts",
117
+ "default": "./dist/vue.cjs"
118
+ }
93
119
  }
94
120
  },
95
121
  "sideEffects": false,
@@ -103,7 +129,9 @@
103
129
  "@babel/plugin-transform-typescript": "^7.23.6",
104
130
  "@changesets/cli": "^2.27.1",
105
131
  "@matejmazur/react-katex": "^3.1.3",
132
+ "@solidjs/testing-library": "^0.8.10",
106
133
  "@tailwindcss/typography": "^0.5.19",
134
+ "@vue/test-utils": "^2.4.0",
107
135
  "@tailwindcss/vite": "^4.1.17",
108
136
  "@testing-library/react-native": "^13.3.3",
109
137
  "@types/benchmark": "^2.1.5",
@@ -118,9 +146,10 @@
118
146
  "benchtable": "^0.1.0",
119
147
  "bunup": "^0.15.14",
120
148
  "cli-progress": "^3.12.0",
149
+ "happy-dom": "^20.0.10",
121
150
  "in-publish": "^2.0.1",
122
151
  "markdown-it": "^14.0.0",
123
- "markdown-to-jsx-latest": "npm:markdown-to-jsx@8.0.0",
152
+ "markdown-to-jsx-latest": "npm:markdown-to-jsx@9.2.0",
124
153
  "marked": "^17.0.0",
125
154
  "microbundle": "^0.15.1",
126
155
  "microtime": "^3.1.1",
@@ -140,6 +169,7 @@
140
169
  "remark-rehype": "^11.1.2",
141
170
  "rimraf": "^6.1.0",
142
171
  "simple-markdown": "^0.7.3",
172
+ "solid-js": "^1.9.10",
143
173
  "source-map": "^0.7.6",
144
174
  "styled-components": "^6.1.6",
145
175
  "tailwindcss": "^4.0.0",
@@ -148,10 +178,13 @@
148
178
  "twgl": "^7.0.3",
149
179
  "typescript": "^5.9.3",
150
180
  "vite": "^7.2.2",
181
+ "vue": "^3.4.0",
151
182
  "yaml-js": "^0.3.1"
152
183
  },
153
184
  "peerDependencies": {
154
- "react": ">= 16.0.0"
185
+ "react": ">= 16.0.0",
186
+ "solid-js": ">=1.0.0",
187
+ "vue": ">=3.0.0"
155
188
  },
156
189
  "peerDependenciesMeta": {
157
190
  "react": {
@@ -159,6 +192,12 @@
159
192
  },
160
193
  "react-native": {
161
194
  "optional": true
195
+ },
196
+ "solid-js": {
197
+ "optional": true
198
+ },
199
+ "vue": {
200
+ "optional": true
162
201
  }
163
202
  },
164
203
  "scripts": {