mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* Update bun-framework-next for version 12.2 * Match on minor version for next peer dependency per compatibility issues * Update example next app packages per 12.2 integration * Update next version warning per minor version compatibility changes Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
22 lines
394 B
JSON
22 lines
394 B
JSON
{
|
|
"name": "@bun-examples/next",
|
|
"version": "0.0.57",
|
|
"dependencies": {
|
|
"next": "^12.2.0",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"react-is": "^17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18",
|
|
"bun-framework-next": "^12.2",
|
|
"typescript": "latest"
|
|
},
|
|
"bun-create": {
|
|
"postinstall": [
|
|
"bun bun --use next"
|
|
]
|
|
},
|
|
"module": "index.js"
|
|
}
|