- Add native SSE streaming support with streamSSE() method - Add POST body support to all streaming methods (stream, streamJSON, streamSSE) - Add race() method for first successful response from multiple endpoints - Add batch() method for efficient bulk operations with concurrency control - Add parallel() method using Web Workers for true parallelism - Add uploadResumable() with adaptive chunking and progress tracking - Add uploadStream() for large file/model uploads - Add throttled() method for bandwidth limiting - Add streamWithReconnect() for resilient streaming with auto-reconnection - Remove duplicate withExponentialBackoff (already in retry logic) - Remove overly specialized AI methods (trackTokenUsage, parallelInference) - Fix TypeScript strict mode compatibility - Add comprehensive CHANGELOG.md - Bundle size: 11KB gzipped (up from 8KB, still under 15KB target) BREAKING CHANGES: - Removed withExponentialBackoff() - use built-in retry config instead - Removed trackTokenUsage() - too specialized for general HTTP client - Removed parallelInference() - use generic parallel() method instead 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
No EOL
818 B
JSON
33 lines
No EOL
818 B
JSON
{
|
|
"name": "typedfetch-website",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@catalystlabs/typedfetch": "^0.2.0",
|
|
"@mantine/code-highlight": "^8.0.0",
|
|
"@mantine/core": "^8.0.0",
|
|
"@mantine/hooks": "^8.0.0",
|
|
"@mantine/spotlight": "^8.0.0",
|
|
"@tabler/icons-react": "^3.26.0",
|
|
"@vercel/analytics": "^1.5.0",
|
|
"framer-motion": "^11.15.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-router-dom": "^7.1.1",
|
|
"shiki": "^3.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.12",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"sharp": "^0.34.3",
|
|
"typescript": "^5.8.3",
|
|
"vite": "^6.0.7"
|
|
}
|
|
} |