markstream-react 0.0.10 → 0.0.12

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.
Files changed (1) hide show
  1. 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.10",
4
+ "version": "0.0.12",
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,13 +74,6 @@
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
- },
84
77
  "peerDependencies": {
85
78
  "@antv/infographic": "^0.2.3",
86
79
  "katex": ">=0.16.22",
@@ -110,7 +103,7 @@
110
103
  "dependencies": {
111
104
  "@floating-ui/dom": "^1.7.4",
112
105
  "clsx": "^2.1.1",
113
- "stream-markdown-parser": "workspace:*"
106
+ "stream-markdown-parser": "0.0.59-beta.3"
114
107
  },
115
108
  "devDependencies": {
116
109
  "@types/react": "^18.3.27",
@@ -120,5 +113,12 @@
120
113
  "tailwindcss": "^3.4.19",
121
114
  "typescript": "^5.9.3",
122
115
  "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
+ }