Files
vercel__next.js/examples/with-rspack/package.json
Will Binns-Smith 0f0ba8fca8 Rename alternate bundler package name (#77793)
Test Plan: CI. Tested locally with
`test/development/app-dir/basic/basic.test.ts`. Will test with a
create-next-app once published.
2025-04-03 14:42:52 -07:00

20 lines
359 B
JSON

{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "latest",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"next-rspack": "canary",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"typescript": "^5.7.2"
}
}