mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 19:38:58 +00:00
- 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.
30 lines
674 B
JSON
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"
|
|
}
|