@aumnidigital/bms 0.1.0 → 0.1.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/README.md +7 -1
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -15,7 +15,12 @@ Runtime MDX renderer with built-in shadcn/ui components for React applications.
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npm install @aumnidigital/bms @mdx-js/mdx
|
|
18
|
+
npm install @aumnidigital/bms @mdx-js/mdx remark-gfm
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Or with pnpm:
|
|
22
|
+
```bash
|
|
23
|
+
pnpm add @aumnidigital/bms @mdx-js/mdx remark-gfm
|
|
19
24
|
```
|
|
20
25
|
|
|
21
26
|
### Peer Dependencies
|
|
@@ -24,6 +29,7 @@ This package requires:
|
|
|
24
29
|
- `react` ^18.0.0 || ^19.0.0
|
|
25
30
|
- `react-dom` ^18.0.0 || ^19.0.0
|
|
26
31
|
- `@mdx-js/mdx` ^3.0.0
|
|
32
|
+
- `remark-gfm` ^4.0.0 (for GitHub Flavored Markdown support - tables, strikethrough, task lists, etc.)
|
|
27
33
|
|
|
28
34
|
## Quick Start
|
|
29
35
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aumnidigital/bms",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Runtime MDX renderer with shadcn/ui components for React applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -59,7 +59,13 @@
|
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"@mdx-js/mdx": "^3.0.0",
|
|
61
61
|
"react": "^18.0.0 || ^19.0.0",
|
|
62
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
62
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
63
|
+
"remark-gfm": "^4.0.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependenciesMeta": {
|
|
66
|
+
"remark-gfm": {
|
|
67
|
+
"optional": true
|
|
68
|
+
}
|
|
63
69
|
},
|
|
64
70
|
"dependencies": {
|
|
65
71
|
"@hookform/resolvers": "^5.2.2",
|