markdown-to-jsx 7.7.2 → 7.7.4

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
@@ -3,7 +3,7 @@
3
3
  "description": "Convert markdown to JSX with ease for React and React-like projects. Super lightweight and highly configurable.",
4
4
  "homepage": "https://markdown-to-jsx.quantizor.dev",
5
5
  "license": "MIT",
6
- "version": "7.7.2",
6
+ "version": "7.7.4",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -18,7 +18,7 @@
18
18
  "jsx",
19
19
  "html"
20
20
  ],
21
- "author": "Evan Jacobs <yo@quantizor.com>",
21
+ "author": "Evan Jacobs <x@quantizor.dev>",
22
22
  "repository": {
23
23
  "type": "git",
24
24
  "url": "git+https://github.com/quantizor/markdown-to-jsx.git"
@@ -66,7 +66,9 @@
66
66
  "jest": "^29.7.0",
67
67
  "jest-environment-jsdom": "^29.7.0",
68
68
  "jest-serializer-html": "^7.1.0",
69
+ "jest-watch-typeahead": "^2.2.2",
69
70
  "markdown-it": "^14.0.0",
71
+ "markdown-to-jsx-latest": "npm:markdown-to-jsx@latest",
70
72
  "microbundle": "^0.15.1",
71
73
  "microtime": "^3.1.1",
72
74
  "mkdirp": "^3.0.1",
@@ -94,6 +96,7 @@
94
96
  "test": "jest --verbose",
95
97
  "size": "size-limit",
96
98
  "benchmark": "node benchmark.js",
99
+ "benchmark:all": "node benchmark.js --all",
97
100
  "changeset-publish": "yarn build && changeset publish"
98
101
  },
99
102
  "size-limit": [
@@ -122,7 +125,11 @@
122
125
  },
123
126
  "snapshotSerializers": [
124
127
  "jest-serializer-html"
128
+ ],
129
+ "watchPlugins": [
130
+ "jest-watch-typeahead/filename",
131
+ "jest-watch-typeahead/testname"
125
132
  ]
126
133
  },
127
- "packageManager": "yarn@4.5.1"
134
+ "packageManager": "yarn@4.6.0"
128
135
  }