markstream-angular 0.1.0-beta.2 → 0.1.0-beta.3

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-angular",
3
3
  "type": "module",
4
- "version": "0.1.0-beta.2",
4
+ "version": "0.1.0-beta.3",
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,6 +66,16 @@
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
+ },
69
79
  "peerDependencies": {
70
80
  "@angular/common": ">=20",
71
81
  "@angular/core": ">=20",
@@ -94,8 +104,8 @@
94
104
  },
95
105
  "dependencies": {
96
106
  "@floating-ui/dom": "^1.8.0",
97
- "markstream-core": "1.1.0-beta.1",
98
- "stream-markdown-parser": "1.2.5-beta.1"
107
+ "markstream-core": "1.1.0-beta.2",
108
+ "stream-markdown-parser": "1.2.6-beta.1"
99
109
  },
100
110
  "devDependencies": {
101
111
  "@angular/common": "^20.3.26",
@@ -108,14 +118,5 @@
108
118
  "typescript": "^5.9.3",
109
119
  "vite": "^7.3.6",
110
120
  "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"
120
121
  }
121
- }
122
+ }