Files
bun.sh/test/integration/next-pages/package.json
Jarred Sumner 964d4dac2c Rewrite AbortSignal.timeout (#21695)
### What does this PR do?

On Linux, AbortSignal.timeout created a file descriptor for each timeout
and did not keep the event loop alive when a timer was active. This is
fixed.

### How did you verify your code works?

Fewer flaky tests

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.ai>
2025-08-08 23:07:19 -07:00

29 lines
686 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": "24.2.1",
"@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.6",
"next": "^15.4.6",
"postcss": "8.5.6",
"puppeteer": "24.16.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^3",
"typescript": "5.9.2"
}
}