markstream-svelte 0.1.0-beta.4 → 2.0.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 +13 -14
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markstream-svelte",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"description": "Svelte 5 and SvelteKit streaming Markdown renderer for AI chat, LLM token streams, SSE/WebSocket output, incomplete Markdown, Mermaid, KaTeX, stream-diffs powered code blocks, and custom Svelte components.",
|
|
6
6
|
"author": "Simon He",
|
|
7
7
|
"license": "MIT",
|
|
@@ -73,16 +73,6 @@
|
|
|
73
73
|
"files": [
|
|
74
74
|
"dist"
|
|
75
75
|
],
|
|
76
|
-
"scripts": {
|
|
77
|
-
"build": "pnpm --dir ../markdown-parser build && pnpm --dir ../markstream-core build && svelte-package -i src -o dist --tsconfig tsconfig.build.json && postcss src/index.css -o dist/index.css && cp dist/index.css dist/index.tailwind.css && node ../../scripts/generate-px-css.mjs",
|
|
78
|
-
"dev": "vite dev",
|
|
79
|
-
"preview": "vite preview",
|
|
80
|
-
"typecheck": "svelte-check --tsconfig ./tsconfig.json",
|
|
81
|
-
"prepublishOnly": "pnpm run build && pnpm run check:workspace-deps-published",
|
|
82
|
-
"check:core-published": "node ../../scripts/check-core-published.mjs --package-json package.json --core-package-json ../markstream-core/package.json",
|
|
83
|
-
"check:workspace-deps-published": "node ../../scripts/check-workspace-deps-published.mjs --package-json package.json",
|
|
84
|
-
"release": "pnpm run check:workspace-deps-published && bumpp --all --commit --no-tag --no-push --execute 'pnpm --workspace-root run docs:llms:generate' && DIST_TAG=\"$(node ../../scripts/dist-tag.mjs)\" && pnpm publish --access public --tag \"${DIST_TAG}\" && node ../../scripts/tag-package.mjs --package-json package.json --push"
|
|
85
|
-
},
|
|
86
76
|
"peerDependencies": {
|
|
87
77
|
"@antv/infographic": "^0.2.3",
|
|
88
78
|
"@terrastruct/d2": ">=0.1.33",
|
|
@@ -110,8 +100,8 @@
|
|
|
110
100
|
},
|
|
111
101
|
"dependencies": {
|
|
112
102
|
"@floating-ui/dom": "^1.8.0",
|
|
113
|
-
"markstream-core": "
|
|
114
|
-
"stream-markdown-parser": "1.2.
|
|
103
|
+
"markstream-core": "2.0.0",
|
|
104
|
+
"stream-markdown-parser": "1.2.8"
|
|
115
105
|
},
|
|
116
106
|
"devDependencies": {
|
|
117
107
|
"@sveltejs/package": "^2.5.8",
|
|
@@ -124,5 +114,14 @@
|
|
|
124
114
|
"tailwindcss": "^3.4.19",
|
|
125
115
|
"typescript": "^5.9.3",
|
|
126
116
|
"vite": "^7.3.6"
|
|
117
|
+
},
|
|
118
|
+
"scripts": {
|
|
119
|
+
"build": "pnpm --dir ../markdown-parser build && pnpm --dir ../markstream-core build && svelte-package -i src -o dist --tsconfig tsconfig.build.json && postcss src/index.css -o dist/index.css && cp dist/index.css dist/index.tailwind.css && node ../../scripts/generate-px-css.mjs",
|
|
120
|
+
"dev": "vite dev",
|
|
121
|
+
"preview": "vite preview",
|
|
122
|
+
"typecheck": "svelte-check --tsconfig ./tsconfig.json",
|
|
123
|
+
"check:core-published": "node ../../scripts/check-core-published.mjs --package-json package.json --core-package-json ../markstream-core/package.json",
|
|
124
|
+
"check:workspace-deps-published": "node ../../scripts/check-workspace-deps-published.mjs --package-json package.json",
|
|
125
|
+
"release": "pnpm run check:workspace-deps-published && bumpp --all --commit --no-tag --no-push --execute 'pnpm --workspace-root run docs:llms:generate' && DIST_TAG=\"$(node ../../scripts/dist-tag.mjs)\" && pnpm publish --access public --tag \"${DIST_TAG}\" && node ../../scripts/tag-package.mjs --package-json package.json --push"
|
|
127
126
|
}
|
|
128
|
-
}
|
|
127
|
+
}
|