markstream-angular 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.
Files changed (1) hide show
  1. package/package.json +13 -14
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "markstream-angular",
3
3
  "type": "module",
4
- "version": "0.1.0-beta.4",
4
+ "version": "2.0.0",
5
5
  "description": "Angular 20+ standalone streaming Markdown renderer for AI chat, LLM token streams, SSE/WebSocket output, incomplete Markdown, Mermaid, KaTeX, stream-diffs powered code blocks, and safe Angular component rendering.",
6
6
  "author": "Simon He",
7
7
  "license": "MIT",
@@ -66,16 +66,6 @@
66
66
  "files": [
67
67
  "dist"
68
68
  ],
69
- "scripts": {
70
- "build": "pnpm --dir ../markdown-parser build && pnpm --dir ../markstream-core build && ng-packagr -p ng-package.json -c tsconfig.build.json && vite build --config vite.config.workers.ts --mode npm",
71
- "dev": "vite dev",
72
- "preview": "vite preview",
73
- "typecheck": "tsc --noEmit",
74
- "prepublishOnly": "pnpm run build && pnpm run check:workspace-deps-published",
75
- "check:core-published": "node ../../scripts/check-core-published.mjs --package-json package.json --core-package-json ../markstream-core/package.json",
76
- "check:workspace-deps-published": "node ../../scripts/check-workspace-deps-published.mjs --package-json package.json",
77
- "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"
78
- },
79
69
  "peerDependencies": {
80
70
  "@angular/common": ">=20",
81
71
  "@angular/core": ">=20",
@@ -104,8 +94,8 @@
104
94
  },
105
95
  "dependencies": {
106
96
  "@floating-ui/dom": "^1.8.0",
107
- "markstream-core": "1.1.0-beta.3",
108
- "stream-markdown-parser": "1.2.7-beta.1"
97
+ "markstream-core": "2.0.0",
98
+ "stream-markdown-parser": "1.2.8"
109
99
  },
110
100
  "devDependencies": {
111
101
  "@angular/common": "^20.3.26",
@@ -118,5 +108,14 @@
118
108
  "typescript": "^5.9.3",
119
109
  "vite": "^7.3.6",
120
110
  "vite-plugin-dts": "^4.5.4"
111
+ },
112
+ "scripts": {
113
+ "build": "pnpm --dir ../markdown-parser build && pnpm --dir ../markstream-core build && ng-packagr -p ng-package.json -c tsconfig.build.json && vite build --config vite.config.workers.ts --mode npm",
114
+ "dev": "vite dev",
115
+ "preview": "vite preview",
116
+ "typecheck": "tsc --noEmit",
117
+ "check:core-published": "node ../../scripts/check-core-published.mjs --package-json package.json --core-package-json ../markstream-core/package.json",
118
+ "check:workspace-deps-published": "node ../../scripts/check-workspace-deps-published.mjs --package-json package.json",
119
+ "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"
121
120
  }
122
- }
121
+ }