mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
- Changed the version of `react-server-dom-bun` from a local link to a specific experimental version in `package.json` and `bun.lock`. - Updated the import path for `renderToPipeableStream` to use the `.node` variant for compatibility. - Added `neo-async` as a dependency for `react-server-dom-bun` to ensure proper functionality.
30 lines
673 B
JSON
30 lines
673 B
JSON
{
|
|
"name": "bun-framework-react",
|
|
"version": "0.1.0",
|
|
"description": "React framework integration for Bun Bake",
|
|
"type": "module",
|
|
"main": "index.ts",
|
|
"exports": {
|
|
".": "./index.ts",
|
|
"./package.json": "./package.json",
|
|
"./*": "./*"
|
|
},
|
|
"dependencies": {
|
|
"react": "19.2.0-canary-67a44bcd-20250915",
|
|
"react-dom": "19.2.0-canary-67a44bcd-20250915",
|
|
"react-refresh": "^0.17.0",
|
|
"react-server-dom-bun": "^0.0.0-experimental-603e6108-20241029"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.1.13",
|
|
"@types/react-dom": "^19.1.9"
|
|
},
|
|
"keywords": [
|
|
"bun",
|
|
"react",
|
|
"framework",
|
|
"bake"
|
|
],
|
|
"license": "MIT"
|
|
}
|