markstream-react 0.0.4 → 0.0.6
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 +10 -10
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markstream-react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.6",
|
|
5
5
|
"description": "React Markdown renderer optimized for large documents with progressive Mermaid rendering, streaming diff code blocks, and fast real-time preview. Built on stream-markdown AST for consistent rendering across frameworks. Perfect for documentation sites, AI chat interfaces, and content management systems.",
|
|
6
6
|
"author": "Simon He",
|
|
7
7
|
"license": "MIT",
|
|
@@ -74,6 +74,13 @@
|
|
|
74
74
|
"files": [
|
|
75
75
|
"dist"
|
|
76
76
|
],
|
|
77
|
+
"scripts": {
|
|
78
|
+
"dev": "vite dev",
|
|
79
|
+
"build": "vite build --mode npm && vite build -c vite.config.tailwind.ts --mode npm && node ./scripts/copy-tailwind-css.mjs",
|
|
80
|
+
"preview": "vite preview",
|
|
81
|
+
"typecheck": "tsc --noEmit",
|
|
82
|
+
"release": "bumpp --commit --no-tag --no-push && npm publish --access public && node ../../scripts/tag-package.mjs --package-json package.json --push"
|
|
83
|
+
},
|
|
77
84
|
"peerDependencies": {
|
|
78
85
|
"@antv/infographic": "^0.2.3",
|
|
79
86
|
"katex": ">=0.16.22",
|
|
@@ -103,7 +110,7 @@
|
|
|
103
110
|
"dependencies": {
|
|
104
111
|
"@floating-ui/dom": "^1.7.4",
|
|
105
112
|
"clsx": "^2.1.1",
|
|
106
|
-
"stream-markdown-parser": "
|
|
113
|
+
"stream-markdown-parser": "workspace:*"
|
|
107
114
|
},
|
|
108
115
|
"devDependencies": {
|
|
109
116
|
"@types/react": "^18.3.27",
|
|
@@ -113,12 +120,5 @@
|
|
|
113
120
|
"tailwindcss": "^3.4.19",
|
|
114
121
|
"typescript": "^5.9.3",
|
|
115
122
|
"vite": "^7.3.1"
|
|
116
|
-
},
|
|
117
|
-
"scripts": {
|
|
118
|
-
"dev": "vite dev",
|
|
119
|
-
"build": "vite build --mode npm && vite build -c vite.config.tailwind.ts --mode npm && node ./scripts/copy-tailwind-css.mjs",
|
|
120
|
-
"preview": "vite preview",
|
|
121
|
-
"typecheck": "tsc --noEmit",
|
|
122
|
-
"release": "bumpp --commit --no-tag --no-push && npm publish --access public && node ../../scripts/tag-package.mjs --package-json package.json --push"
|
|
123
123
|
}
|
|
124
|
-
}
|
|
124
|
+
}
|