markstream-angular 0.0.9 → 0.0.11

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "markstream-angular",
3
3
  "type": "module",
4
- "version": "0.0.9",
4
+ "version": "0.0.11",
5
5
  "description": "Angular 20+ standalone streaming Markdown renderer for AI chat, LLM token streams, SSE/WebSocket output, incomplete Markdown, Mermaid, KaTeX, Monaco-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",
@@ -98,8 +108,8 @@
98
108
  },
99
109
  "dependencies": {
100
110
  "@floating-ui/dom": "^1.8.0",
101
- "markstream-core": "1.0.3",
102
- "stream-markdown-parser": "1.2.1"
111
+ "markstream-core": "workspace:*",
112
+ "stream-markdown-parser": "workspace:*"
103
113
  },
104
114
  "devDependencies": {
105
115
  "@angular/common": "^20.3.26",
@@ -112,14 +122,5 @@
112
122
  "typescript": "^5.9.3",
113
123
  "vite": "^7.3.6",
114
124
  "vite-plugin-dts": "^4.5.4"
115
- },
116
- "scripts": {
117
- "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",
118
- "dev": "vite dev",
119
- "preview": "vite preview",
120
- "typecheck": "tsc --noEmit",
121
- "check:core-published": "node ../../scripts/check-core-published.mjs --package-json package.json --core-package-json ../markstream-core/package.json",
122
- "check:workspace-deps-published": "node ../../scripts/check-workspace-deps-published.mjs --package-json package.json",
123
- "release": "pnpm run check:workspace-deps-published && bumpp --all --commit --no-tag --no-push --execute 'pnpm --workspace-root run docs:llms:generate' && pnpm publish --access public $(node ../../scripts/dist-tag.mjs) && node ../../scripts/tag-package.mjs --package-json package.json --push"
124
125
  }
125
- }
126
+ }