markstream-svelte 0.1.0-beta.2 → 0.1.0-beta.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.
Files changed (1) hide show
  1. package/package.json +14 -13
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "markstream-svelte",
3
3
  "type": "module",
4
- "version": "0.1.0-beta.2",
4
+ "version": "0.1.0-beta.4",
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,6 +73,16 @@
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
+ },
76
86
  "peerDependencies": {
77
87
  "@antv/infographic": "^0.2.3",
78
88
  "@terrastruct/d2": ">=0.1.33",
@@ -100,8 +110,8 @@
100
110
  },
101
111
  "dependencies": {
102
112
  "@floating-ui/dom": "^1.8.0",
103
- "markstream-core": "1.1.0-beta.1",
104
- "stream-markdown-parser": "1.2.5-beta.1"
113
+ "markstream-core": "1.1.0-beta.3",
114
+ "stream-markdown-parser": "1.2.7-beta.1"
105
115
  },
106
116
  "devDependencies": {
107
117
  "@sveltejs/package": "^2.5.8",
@@ -114,14 +124,5 @@
114
124
  "tailwindcss": "^3.4.19",
115
125
  "typescript": "^5.9.3",
116
126
  "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"
126
127
  }
127
- }
128
+ }