Files
bun.sh/packages/bun-framework-react/package.json
Alistair Smith bb19610f0d Update Bun framework to use react-server-dom-webpack and upgrade dependencies
- Changed module imports from "react-server-dom-bun" to "react-server-dom-webpack" in multiple files.
- Updated dependencies in package.json and bun.lock to use newer versions of React, React DOM, React Refresh, and the new react-server-dom-webpack package.
- Adjusted type definitions in bun-types to reflect changes in import sources.

This update enhances compatibility with the latest React features and improves the overall framework structure.
2025-09-15 21:00:46 -07:00

30 lines
674 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-webpack": "^19.2.0-canary-67a44bcd-20250915"
},
"devDependencies": {
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9"
},
"keywords": [
"bun",
"react",
"framework",
"bake"
],
"license": "MIT"
}