Files
Hayden Bleasel 62888665f8 Performance improvements, part 2 (#241)
* Add functional benchmarking suite

* Optimize regex performance

* Fix rendering issue with code blocks

* Fix bench commands

* Table optimizations

* Math Block Detection Caching

* Parse blocks optimizations

* More regex-to-loop optimizations

* Update layout.tsx

* Remove dependency on vfile

* Optimize string operations

* Create markdown.test.tsx

* Optimized cache key generation

* Fix display issue

* Add core Markdown parsing benchmarks

* Update section.tsx

* CSV / TSV escaping optimization

* More optimizations

* Run Ultracite

* Fix remaining lint issues
2025-11-21 17:45:53 -08:00

31 lines
823 B
JSON

{
"name": "streamdown-monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"check": "npx ultracite@latest check",
"fix": "npx ultracite@latest fix",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:ui": "turbo run test:ui",
"check-types": "turbo run check-types",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build && changeset publish",
"bench": "turbo run bench",
"bench:ui": "turbo run bench:ui"
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"@changesets/cli": "^2.29.7",
"turbo": "^2.6.1",
"typescript": "5.9.3",
"ultracite": "6.3.4"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"node": ">=18"
}
}