Files
bun.sh/bench/react-hello-world/package.json
Claude Bot b084d8e9bf Update react, react-dom, and next to latest versions
Update all package.json files to use the latest versions:
- react: ^19.2.3
- react-dom: ^19.2.3
- @types/react: ^19.2.3
- @types/react-dom: ^19.2.3
- next: ^16.1.0 (where applicable)
- eslint-config-next: ^16.1.0 (where applicable)

Updated files:
- src/init/react-app/package.json
- src/init/react-tailwind/package.json
- src/init/react-shadcn/package.json
- test/integration/next-pages/package.json
- test/js/third_party/next-auth/fixture/package.json
- test/bake/fixtures/react-spa-simple/package.json
- bench/install/package.json
- bench/package.json
- bench/react-hello-world/package.json
- package.json (root)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-19 09:46:58 +00:00

18 lines
1.1 KiB
JSON

{
"name": "react-hello-world",
"version": "1.0.0",
"description": "",
"main": "react-hello-world.node.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:workerd": "bun build react-hello-world.workerd.jsx --outfile=react-hello-world.workerd.js --format=esm --production && (echo '// MessageChannel polyfill for workerd'; echo 'if (typeof MessageChannel === \"undefined\") {'; echo ' globalThis.MessageChannel = class MessageChannel {'; echo ' constructor() {'; echo ' this.port1 = { onmessage: null, postMessage: () => {} };'; echo ' this.port2 = {'; echo ' postMessage: (msg) => {'; echo ' if (this.port1.onmessage) {'; echo ' queueMicrotask(() => this.port1.onmessage({ data: msg }));'; echo ' }'; echo ' }'; echo ' };'; echo ' }'; echo ' };'; echo '}'; cat react-hello-world.workerd.js) > temp.js && mv temp.js react-hello-world.workerd.js"
},
"keywords": [],
"author": "Colin McDonnell",
"license": "ISC",
"dependencies": {
"react": "^19.2.3",
"react-dom": "^19.2.3"
}
}