Files
bun.sh/test/integration/next-pages/package.json
Alistair Smith 1d50af7fe8 @types/bun: Update to @types/node@25, fallback to PropertyKey in test expect matchers when keyof unknown is used (#25460)
more accurately, developers cannot pass a value when expect values
resolve to never. this is easy to fall into when using the
`toContainKey*` matchers. falling back to PropertyKey when this happens
is a sensible/reasonable default

### What does this PR do?

fixes #25456, cc @MonsterDeveloper
fixes #25461

### How did you verify your code works?

bun types integration test
2025-12-10 18:15:55 -08:00

29 lines
684 B
JSON

{
"name": "default-create-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "cd node_modules/puppeteer && bun install.mjs"
},
"dependencies": {
"@types/node": "25.0.0",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"autoprefixer": "10.4.21",
"bun-types": "^1.2.19",
"eslint": "^9.33.0",
"eslint-config-next": "15.4.8",
"next": "15.4.8",
"postcss": "8.5.6",
"puppeteer": "24.16.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^3",
"typescript": "5.9.2"
}
}