Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore:(deps): bump the dev-dependencies group across 1 directory with 158 updates#134

Open
dependabot[bot] wants to merge 2 commits into
main from
dependabot/npm_and_yarn/dev-dependencies-978c8916bd
Open

chore:(deps): bump the dev-dependencies group across 1 directory with 158 updates #134
dependabot[bot] wants to merge 2 commits into
main from
dependabot/npm_and_yarn/dev-dependencies-978c8916bd

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 15, 2026
edited
Loading

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group with 31 updates in the / directory:

Package From To
dotenv 17.2.3 17.4.2
handlebars 4.7.8 4.7.9
joi 18.0.2 18.2.1
js-yaml 4.1.1 4.2.0
lucide-react 0.563.0 1.18.0
openai 6.16.0 6.42.0
opencc-js 1.0.5 1.3.1
p-limit 7.2.0 7.3.0
pg 8.17.2 8.21.0
@types/pg 8.16.0 8.20.0
playwright-core 1.57.0 1.60.0
react 19.2.4 19.2.7
@types/react 19.2.10 19.2.17
react-dom 19.2.4 19.2.7
sharp 0.34.5 0.35.1
ws 8.19.0 8.21.0
zod 4.3.6 4.4.3
zod-to-json-schema 3.25.1 3.25.2
@eslint/js 9.39.2 10.0.1
@tailwindcss/cli 4.1.18 4.3.1
@types/node 25.0.10 25.9.3
autoprefixer 10.4.23 10.5.0
eslint 9.39.2 10.5.0
nodemon 3.1.11 3.1.14
postcss 8.5.6 8.5.15
prettier 3.8.1 3.8.4
tailwindcss 4.1.18 4.3.1
tsx 4.21.0 4.22.4
typescript 5.9.3 6.0.3
typescript-eslint 8.54.0 8.61.0
vitest 4.0.18 4.1.8

Updates dotenv from 17.2.3 to 17.4.2

Changelog

Sourced from dotenv's changelog.

17.4.2 (2026年04月12日)

Changed

  • Improved skill files - tightened up details (#1009)

17.4.1 (2026年04月05日)

Changed

  • Change text injecting to injected (#1005)

17.4.0 (2026年04月01日)

Added

  • Add skills/ folder with focused agent skills: skills/dotenv/SKILL.md (core usage) and skills/dotenvx/SKILL.md (encryption, multiple environments, variable expansion) for AI coding agent discovery via the skills.sh ecosystem (npx skills add motdotla/dotenv)

Changed

  • Tighten up logs: ◇ injecting env (14) from .env (#1003)

17.3.1 (2026年02月12日)

Changed

  • Fix as2 example command in README and update spanish README

17.3.0 (2026年02月12日)

Added

  • Add a new README section on dotenv’s approach to the agentic future.

Changed

  • Rewrite README to get humans started more quickly with less noise while simultaneously making more accessible for llms and agents to go deeper into details.

17.2.4 (2026年02月05日)

Changed

  • Make DotenvPopulateInput accept NodeJS.ProcessEnv type (#915)
  • Give back to dotenv by checking out my newest project vestauth. It is auth for agents. Thank you for using my software.
Commits

Updates handlebars from 4.7.8 to 4.7.9

Release notes

Sourced from handlebars's releases.

v4.7.9

Commits

Changelog

Sourced from handlebars's changelog.

v4.7.9 - March 26th, 2026

  • fix: enable shell mode for spawn to resolve Windows EINVAL issue - e0137c2
  • fix type "RuntimeOptions" also accepting string partials - eab1d14
  • feat(types): set hash to be a Record<string, any> - de4414d
  • fix non-contiguous program indices - 4512766
  • refactor: rename i to startPartIndex - e497a35
  • security: fix security issues - 68d8df5

Commits

Commits
  • dce542c v4.7.9
  • 8a41389 Update release notes
  • 68d8df5 Fix security issues
  • b2a0831 Fix browser tests
  • 9f98c16 Fix release script
  • 45443b4 Revert "Improve partial indenting performance"
  • 8841a5f Fix CI errors with linting
  • e0137c2 fix: enable shell mode for spawn to resolve Windows EINVAL issue
  • e914d60 Improve rendering performance
  • 7de4b41 Upgrade GitHub Actions checkout and setup-node on 4.x branch
  • Additional commits viewable in compare view

Updates joi from 18.0.2 to 18.2.1

Commits
  • 048fe05 18.2.1
  • 2392713 Merge pull request #3113 from hapijs/fix/link-max-call-stack
  • fc146a6 fix: protect link recursion from max call stack
  • f4e97e0 18.2.0
  • 626893d Merge pull request #3111 from hapijs/feat/link-maxRecursion
  • 9c7a443 feat: add maxRecursion limit to links
  • 7d43b12 18.1.2
  • d98c802 Merge pull request #3107 from mahmoodhamdi/fix/json-schema-number-rules
  • 7edc591 fix: improve JSON Schema conversion for number.port() and number.sign()
  • 06afeb5 18.1.1
  • Additional commits viewable in compare view

Updates js-yaml from 4.1.1 to 4.2.0

Changelog

Sourced from js-yaml's changelog.

[4.2.0] - 2026年06月01日

Added

  • Added docs/safety.md with notes about processing untrusted YAML.
  • Added maxDepth (100) loader option. Not a problem, but gives a better exception instead of RangeError on stack overflow.
  • Added maxMergeSeqLength (20) loader option. Not a problem after merge fix, but an additional restriction for safety.
  • Added sourcemaps to dist/ builds.

Changed

  • Stop resolving numbers with underscores as numeric scalars, #627.
  • Switched dev toolchains to Vite / neostandard.
  • Updated demo.
  • Reorganized tests.
  • dist/ files are no longer kept in the repository.

Fixed

  • Fix parsing of properties on the first implicit block mapping key, #62.
  • Fix trailing whitespace handling when folding flow scalar lines, #307.
  • Reject top-level block scalars without content indentation, #280.
  • Ensure numbers survive round-trip, #737.
  • Fix test coverage for issue #221.
  • Fix flow scalar trailing whitespace folding, #307.
  • Fix digits in YAML named tag handles.

Security

  • Fix potential DoS via quadratic complexity in merge - deduplicate repeated elements (makes sense for malformed files > 10K).

[3.14.2] - 2025年11月15日

Security

  • Backported v4.1.1 fix to v3
Commits

Updates lucide-react from 0.563.0 to 1.18.0

Release notes

Sourced from lucide-react's releases.

Version 1.18.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.17.0...1.18.0

Version 1.17.0

What's Changed

Full Changelog: lucide-icons/lucide@1.16.0...1.17.0

Version 1.16.0

What's Changed

Full Changelog: lucide-icons/lucide@1.15.0...1.16.0

Version 1.15.0

What's Changed

... (truncated)

Commits

Updates openai from 6.16.0 to 6.42.0

Release notes

Sourced from openai's releases.

v6.42.0

6.42.0 (2026年06月03日)

Full Changelog: v6.41.0...v6.42.0

Features

  • api: responses.moderation and chat_completions.moderation (6d8f592)

v6.41.0

6.41.0 (2026年06月01日)

Full Changelog: v6.40.0...v6.41.0

Features

  • api: Add Amazon Bedrock Responses support (#1899) (535b045)

v6.40.0

6.40.0 (2026年06月01日)

Full Changelog: v6.39.1...v6.40.0

Features

  • api: workload identity in audit logs, additional_tools item in responses, fix ActionSearch.query to be optional. (aee09f3)

Chores

v6.39.1

6.39.1 (2026年05月27日)

Full Changelog: v6.39.0...v6.39.1

Bug Fixes

  • Improve undici dispatcher mismatch guidance (#1898) (b6e5fd6)
  • treat text/plan with format: binary as raw upload (f9a632a)
  • treat text/plan with format: binary as raw upload (323cb78)

Chores

  • internal: codegen related update (d32deef)

v6.39.0

6.39.0 (2026年05月21日)

... (truncated)

Changelog

Sourced from openai's changelog.

6.42.0 (2026年06月03日)

Full Changelog: v6.41.0...v6.42.0

Features

  • api: responses.moderation and chat_completions.moderation (6d8f592)

6.41.0 (2026年06月01日)

Full Changelog: v6.40.0...v6.41.0

Features

  • api: Add Amazon Bedrock Responses support (#1899) (535b045)

6.40.0 (2026年06月01日)

Full Changelog: v6.39.1...v6.40.0

Features

  • api: workload identity in audit logs, additional_tools item in responses, fix ActionSearch.query to be optional. (aee09f3)

Chores

6.39.1 (2026年05月27日)

Full Changelog: v6.39.0...v6.39.1

Bug Fixes

  • Improve undici dispatcher mismatch guidance (#1898) (b6e5fd6)
  • treat text/plan with format: binary as raw upload (f9a632a)
  • treat text/plan with format: binary as raw upload (323cb78)

Chores

  • internal: codegen related update (d32deef)

6.39.0 (2026年05月21日)

Full Changelog: v6.38.0...v6.39.0

Features

... (truncated)

Commits
  • 6f849f4 release: 6.42.0
  • 579edb2 feat(api): responses.moderation and chat_completions.moderation
  • 7fa93eb release: 6.41.0
  • 3b7fe31 feat(api): Add Amazon Bedrock Responses support (#1899)
  • caf499a codegen metadata
  • 77bec5b release: 6.40.0
  • 0fb7602 feat(api): workload identity in audit logs, additional_tools item in response...
  • 4a860b8 chore: remove migrate CLI
  • 6c11a74 release: 6.39.1
  • a91a7aa fix: Improve undici dispatcher mismatch guidance (#1898)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for openai since your current version.


Updates opencc-js from 1.0.5 to 1.3.1

Release notes

Sourced from opencc-js's releases.

v1.3.1

What's Changed

Full Changelog: nk2028/opencc-js@v1.3.0...v1.3.1

v1.3.0

opencc-js 1.3.0 updates the dictionary data to align with official OpenCC 1.3.0 via opencc-data@1.3.0, and adds upstream OpenCC test cases to keep conversion results checked against the official project. The conversion pipeline has a few internal adjustments to better preserve dictionary ordering and staged conversion behavior, while remaining a pure JavaScript implementation rather than a full port of the C++ OpenCC engine. HTML conversion now also supports selected attributes such as placeholder and aria-label. This release also refreshes packaging and documentation, minifies Rollup bundles, adds benchmark tooling, expands CI coverage across Node 20/22/24, and updates npm publishing to use GitHub OIDC trusted publishing.


opencc-js 1.3.0 將字典資料更新為透過 opencc-data@1.3.0 與官方 OpenCC 1.3.0 對齊,並加入 upstream OpenCC 測試案例,用來持續檢查轉換結果是否符合官方專案。轉換流程也有少量內部調整,以更好保留字典順序與分階段轉換行為;不過 opencc-js 仍是純 JavaScript 實作,並不是 C++ OpenCC 引擎的完整移植。HTML 轉換新增對 placeholder、aria-label 等特定屬性的支援。本版也更新了打包與文件、對 Rollup bundle 做 minify、加入 benchmark 工具、將 CI 擴展到 Node 20/22/24,並改用 GitHub OIDC trusted publishing 發布 npm package。


opencc-js 1.3.0 将字典数据更新为通过 opencc-data@1.3.0 与官方 OpenCC 1.3.0 对齐,并加入 upstream OpenCC 测试用例,用来持续检查转换结果是否符合官方项目。转换流程也有少量内部调整,以更好保留字典顺序与分阶段转换行为;不过 opencc-js 仍是纯 JavaScript 实现,并不是 C++ OpenCC 引擎的完整移植。HTML 转换新增对 placeholder、aria-label 等特定属性的支持。本版也更新了打包与文档、对 Rollup bundle 做 minify、加入 benchmark 工具、将 CI 扩展到 Node 20/22/24,并改用 GitHub OIDC trusted publishing 发布 npm package。

Changelog

Sourced from opencc-js's changelog.

1.3.1 - 2026年05月09日

Added

  • Add OpenCC-style mmseg segmentation for built-in converters so multi-stage conversions preserve official phrase boundaries.
  • Add explicit package exports for opencc-js/core, opencc-js/preset, opencc-js/preset/cn2t, and opencc-js/preset/t2cn.
  • Add CommonJS conditional exports for opencc-js/cn2t and opencc-js/t2cn.
  • Add default ESM exports for the bundled package entry points.
  • Add TypeScript declaration files for the public package entry points.
  • Add THIRD_PARTY_LICENSES.md documenting the use of opencc-data (Apache 2.0) and include it in the published package.

Changed

  • Adapt dictionary generation and OpenCC test cases to opencc-data 1.3.1-next.1.
  • Publish only built artifacts, type declarations, README files, changelog, and license files to npm.
  • Mark the package as side-effect-free for bundlers.

1.3.0 - 2026年04月29日

Changes since 1.0.5.

Added

  • Sync dictionary generation with opencc-data 1.3.0 and bundle the generated data at build time so browser usage does not fetch dictionary text files at runtime.
  • Add OpenCC upstream test cases to npm test and the publish lifecycle.
  • Add a Node benchmark for OpenCC-style workloads.
  • Convert placeholder and aria-label attributes in HTMLConverter.

Changed

  • Minify Rollup bundles with terser.
  • Restore opencc-data as the source for generated dictionary data.

Fixed

  • Fix the GitHub Actions test workflow Node.js version configuration.
Commits
  • def70f2 Bump opencc-data version to 1.3.1
  • e39691d Tag npm releases from package version
  • f54a92f Prepare 1.3.1 next release docs
  • 935703e Adapt to opencc-data 1.3.1 next
  • cc0ca16 docs: add THIRD_PARTY_LICENSES.md for opencc-data (Apache 2.0)
  • 287008a Add default ESM exports and update README imports
  • fe27df9 Add issue templates in English and Chinese
  • 2c3e899 Bump npm version to 1.3.1-dev.0
  • 0c34cc6 Add repository guidance for agents
  • 2f13c6b Publish npm package on release publication
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for opencc-js since your current version.


Updates p-limit from 7.2.0 to 7.3.0

Release notes

Sourced from p-limit's releases.

v7.3.0

  • Add rejectOnClear option 8907801
  • Support options object in pLimit() 870db0f

sindresorhus/p-limit@v7.2.0...v7.3.0

Commits

Updates pg from 8.17.2 to 8.21.0

Changelog

Sourced from pg's changelog.

pg@8.21.0

pg@8.20.0

  • Add onConnect callback to pg.Pool constructor options allowing for async initialization of newly created & connected pooled clients.

pg@8.19.0

pg@8.18.0

pg@8.17.0

  • Throw correct error if database URL parsing fails.

pg@8.16.0

pg@8.15.0

  • Add support for esm importing. CommonJS importing is still also supported.

pg@8.14.0

pg@8.13.0

pg@8.12.0

pg-pool@8.10.0

  • Emit release event when client is returned to the pool.

pg@8.9.0

... (truncated)

Commits
  • 544b1ce Publish
  • cc03fa5 Add scramMaxIterations option to limit SCRAM iteration count (#3677)
  • f776327 Remove compatibility code for unsupported versions of Node (<16) (#3678)
  • f252870 cleanup: pg utils (#3675)
  • c8da6ab Assorted test cleanup (#3673)
  • fa47e73 fix: Client#end callback being called multiple times when first is no-op (#...
  • 88a7e60 cleanup: Move declaration to more natural place
  • 2095247 cleanup: Combine duplicated code in Client#query and avoid unneeded early n...
  • 0ac3edd fix: apply SASLprep (RFC 4013) to passwords before SCRAM-SHA-256 PBKDF2 (#3669)
  • be880d4 Assorted test fixes and cleanup (#3672)
  • Additional commits viewable in compare view

Updates @types/pg from 8.16.0 to 8.20.0

Commits

Updates playwright-core from 1.57.0 to 1.60.0

Release notes

Sourced from playwright-core's releases.

v1.60.0

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
 files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});
await page.locator('#dropzone').drop({
data: {
'text/plain': 'hello world',
'text/uri-list': 'https://example.com',
},
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
 await page.route('**/publish', route => {
 test.abort('Tests must not publish to the shared page. Use the `clone` option.');
 return route.abort();
 });
 // ...
});

New APIs

Browser, Context and Page

... (truncated)

Commits

Updates react from 19.2.4 to 19.2.7

Release notes

Sourced from react's releases.

19.2.7 (June 1st, 2026)

React Server Components

19.2.6 (May 6th, 2026)

React Server Components

19.2.5 (April 8th, 2026)

React Server Components

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react since your current version.


Updates @types/react from 19.2.10 to 19.2.17

Commits

Updates react-dom from 19.2.4 to 19.2.7

Release notes

Sourced from react-dom's releases.

19.2.7 (June 1st, 2026)

React Server Components

19.2.6 (May 6th, 2026)

React Server Components

19.2.5 (April 8th, 2026)

React Server Components

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-dom since your current version.


Updates sharp from 0.34.5 to 0.35.1

Release notes

Sourced from sharp's releases.

v0.35.1

  • TypeScript: Ensure type definitions are published for both ESM and CJS. #4537

  • WebAssembly: Ensure wrapper file is published. #4538

v0.35.1-rc.1

  • TypeScript: Ensure type definitions are published for both ESM and CJS. #4537

  • WebAssembly: Ensure wrapper file is published. #4538

v0.35.1-rc.0

  • TypeScript: Ensure type definitions are published #4537

  • WebAssembly: Ensure wrapper file is published. #4538

v0.35.0

  • Breaking: Drop support for Node.js 18, now requires Node.js >= 20.9.0.

  • Breaking: Remove install script from package.json file. Compiling from source is now opt-in via the build script.

  • Breaking: Lossy AVIF output is now tuned using SSIMULACRA2-based iq quality metrics.

  • Breaking: Add limitInputChannels with a default value of 5.

  • Breaking: Remove deprecated failOnError constructor property.

  • Breaking: Remove deprecated paletteBitDepth from metadata response.

  • Breaking: Remove deprecated properties from sharpen operation.

  • Breaking: Rename format.jp2k as format.jp2 for API consistency.

  • Upgrade to libvips v8.18.3 for upstream bug fixes.

  • Remove experimental status from WebAssembly binaries.

  • Add prebuilt binaries for FreeBSD (WebAssembly).

  • Deprecate Windows 32-bit (win32-ia32) prebuilt binaries.

  • Ensure TIFF output bitdepth option is limited to 1, 2 or 4.

  • Add AVIF/HEIF tune option for control over quality metrics.

... (truncated)

Commits
  • d781a2d Release v0.35.1
  • 84fa853 Prerelease v0.35.1-rc.1
  • 21263c3 TypeScript: Switch type defs to ESM, convert back to CJS #4537
  • 8deceb4 Docs: fix link in changelog (#4541)
  • c9f08eb Revert "Docs: Highlight that Windows ARM64 support is experimental" (#4540)
  • 3ec892f Prerelease v0.35.1-rc.0
  • fbdeac5 CI: Run packaging linter on sub-packages
  • 1da92b3 WebAssembly: Ensure wrapper file is published #4538
  • 32c029e Add packaging linter to help prevent regression e.g. #4537
  • 98dc1df TypeScript: Ensure type definitions are published #4537
  • Additional commits viewable in compare view

Updates ws from 8.19.0 to 8.21.0

Release notes

Sourced from ws's releases.

8.21.0

Fea...

Description has been truncated

... 158 updates
Bumps the dev-dependencies group with 31 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [dotenv](https://github.com/motdotla/dotenv) | `17.2.3` | `17.4.2` |
| [handlebars](https://github.com/handlebars-lang/handlebars.js) | `4.7.8` | `4.7.9` |
| [joi](https://github.com/hapijs/joi) | `18.0.2` | `18.2.1` |
| [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.1` | `4.2.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `1.18.0` |
| [openai](https://github.com/openai/openai-node) | `6.16.0` | `6.42.0` |
| [opencc-js](https://github.com/nk2028/opencc-js) | `1.0.5` | `1.3.1` |
| [p-limit](https://github.com/sindresorhus/p-limit) | `7.2.0` | `7.3.0` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.17.2` | `8.21.0` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.16.0` | `8.20.0` |
| [playwright-core](https://github.com/microsoft/playwright) | `1.57.0` | `1.60.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.7` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.10` | `19.2.17` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.7` |
| [sharp](https://github.com/lovell/sharp) | `0.34.5` | `0.35.1` |
| [ws](https://github.com/websockets/ws) | `8.19.0` | `8.21.0` |
| [zod](https://github.com/colinhacks/zod) | `4.3.6` | `4.4.3` |
| [zod-to-json-schema](https://github.com/StefanTerdell/zod-to-json-schema) | `3.25.1` | `3.25.2` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.2` | `10.0.1` |
| [@tailwindcss/cli](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli) | `4.1.18` | `4.3.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.10` | `25.9.3` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.23` | `10.5.0` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `10.5.0` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.11` | `3.1.14` |
| [postcss](https://github.com/postcss/postcss) | `8.5.6` | `8.5.15` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.4` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.18` | `4.3.1` |
| [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.22.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.54.0` | `8.61.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.18` | `4.1.8` |
Updates `dotenv` from 17.2.3 to 17.4.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](https://github.com/motdotla/dotenv/compare/v17.2.3...v17.4.2)
Updates `handlebars` from 4.7.8 to 4.7.9
- [Release notes](https://github.com/handlebars-lang/handlebars.js/releases)
- [Changelog](https://github.com/handlebars-lang/handlebars.js/blob/v4.7.9/release-notes.md)
- [Commits](https://github.com/handlebars-lang/handlebars.js/compare/v4.7.8...v4.7.9)
Updates `joi` from 18.0.2 to 18.2.1
- [Commits](https://github.com/hapijs/joi/compare/v18.0.2...v18.2.1)
Updates `js-yaml` from 4.1.1 to 4.2.0
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/commits)
Updates `lucide-react` from 0.563.0 to 1.18.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.18.0/packages/lucide-react)
Updates `openai` from 6.16.0 to 6.42.0
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/main/CHANGELOG.md)
- [Commits](https://github.com/openai/openai-node/compare/v6.16.0...v6.42.0)
Updates `opencc-js` from 1.0.5 to 1.3.1
- [Release notes](https://github.com/nk2028/opencc-js/releases)
- [Changelog](https://github.com/nk2028/opencc-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nk2028/opencc-js/compare/v1.0.5...v1.3.1)
Updates `p-limit` from 7.2.0 to 7.3.0
- [Release notes](https://github.com/sindresorhus/p-limit/releases)
- [Commits](https://github.com/sindresorhus/p-limit/compare/v7.2.0...v7.3.0)
Updates `pg` from 8.17.2 to 8.21.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.21.0/packages/pg)
Updates `@types/pg` from 8.16.0 to 8.20.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/pg)
Updates `playwright-core` from 1.57.0 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](https://github.com/microsoft/playwright/compare/v1.57.0...v1.60.0)
Updates `react` from 19.2.4 to 19.2.7
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react)
Updates `@types/react` from 19.2.10 to 19.2.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
Updates `react-dom` from 19.2.4 to 19.2.7
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom)
Updates `sharp` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/compare/v0.34.5...v0.35.1)
Updates `ws` from 8.19.0 to 8.21.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/8.19.0...8.21.0)
Updates `zod` from 4.3.6 to 4.4.3
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](https://github.com/colinhacks/zod/compare/v4.3.6...v4.4.3)
Updates `zod-to-json-schema` from 3.25.1 to 3.25.2
- [Release notes](https://github.com/StefanTerdell/zod-to-json-schema/releases)
- [Changelog](https://github.com/StefanTerdell/zod-to-json-schema/blob/master/changelog.md)
- [Commits](https://github.com/StefanTerdell/zod-to-json-schema/commits)
Updates `@eslint/js` from 9.39.2 to 10.0.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v10.0.1/packages/js)
Updates `@tailwindcss/cli` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/packages/@tailwindcss-cli)
Updates `@types/node` from 25.0.10 to 25.9.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
Updates `@types/pg` from 8.16.0 to 8.20.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/pg)
Updates `@types/react` from 19.2.10 to 19.2.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
Updates `autoprefixer` from 10.4.23 to 10.5.0
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/autoprefixer/compare/10.4.23...10.5.0)
Updates `eslint` from 9.39.2 to 10.5.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/compare/v9.39.2...v10.5.0)
Updates `nodemon` from 3.1.11 to 3.1.14
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](https://github.com/remy/nodemon/compare/v3.1.11...v3.1.14)
Updates `postcss` from 8.5.6 to 8.5.15
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.5.6...8.5.15)
Updates `prettier` from 3.8.1 to 3.8.4
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/3.8.1...3.8.4)
Updates `tailwindcss` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/packages/tailwindcss)
Updates `tsx` from 4.21.0 to 4.22.4
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](https://github.com/privatenumber/tsx/compare/v4.21.0...v4.22.4)
Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3)
Updates `typescript-eslint` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/typescript-eslint)
Updates `vitest` from 4.0.18 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/vitest)
Updates `@emnapi/runtime` from 1.8.1 to 1.11.1
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](https://github.com/toyobayashi/emnapi/compare/v1.8.1...v1.11.1)
Updates `@esbuild/netbsd-arm64` from 0.27.2 to 0.27.7
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2025.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.27.2...v0.27.7)
Updates `@esbuild/openbsd-arm64` from 0.27.2 to 0.27.7
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2025.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.27.2...v0.27.7)
Updates `@esbuild/openharmony-arm64` from 0.27.2 to 0.27.7
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2025.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.27.2...v0.27.7)
Updates `@eslint/config-array` from 0.21.1 to 0.23.5
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/config-array/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/config-array-v0.23.5/packages/config-array)
Updates `@eslint/config-helpers` from 0.4.2 to 0.6.0
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/config-helpers/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/core-v0.6.0/packages/config-helpers)
Updates `@eslint/core` from 0.17.0 to 1.2.1
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/core-v1.2.1/packages/core)
Updates `@eslint/object-schema` from 2.1.7 to 3.0.5
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/object-schema/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/object-schema-v3.0.5/packages/object-schema)
Updates `@eslint/plugin-kit` from 0.4.1 to 0.7.2
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/plugin-kit/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/plugin-kit-v0.7.2/packages/plugin-kit)
Updates `@hapi/tlds` from 1.1.4 to 1.1.7
- [Commits](https://github.com/hapijs/tlds/compare/v1.1.4...v1.1.7)
Updates `@humanfs/core` from 0.19.1 to 0.19.2
- [Release notes](https://github.com/humanwhocodes/humanfs/releases)
- [Commits](https://github.com/humanwhocodes/humanfs/compare/core-v0.19.1...core-v0.19.2)
Updates `@humanfs/node` from 0.16.7 to 0.16.8
- [Release notes](https://github.com/humanwhocodes/humanfs/releases)
- [Changelog](https://github.com/humanwhocodes/humanfs/blob/main/packages/node/CHANGELOG.md)
- [Commits](https://github.com/humanwhocodes/humanfs/commits/node-v0.16.8/packages/node)
Updates `@img/colour` from 1.0.0 to 1.1.0
- [Commits](https://github.com/lovell/colour/compare/v1.0.0...v1.1.0)
Updates `@img/sharp-darwin-arm64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/darwin-arm64)
Updates `@img/sharp-darwin-x64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/darwin-x64)
Updates `@img/sharp-libvips-darwin-arm64` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/darwin-arm64)
Updates `@img/sharp-libvips-darwin-x64` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/darwin-x64)
Updates `@img/sharp-libvips-linux-arm64` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/linux-arm64)
Updates `@img/sharp-libvips-linux-arm` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/linux-arm)
Updates `@img/sharp-libvips-linux-ppc64` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/linux-ppc64)
Updates `@img/sharp-libvips-linux-riscv64` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/linux-riscv64)
Updates `@img/sharp-libvips-linux-s390x` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/linux-s390x)
Updates `@img/sharp-libvips-linux-x64` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/linux-x64)
Updates `@img/sharp-libvips-linuxmusl-arm64` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/linuxmusl-arm64)
Updates `@img/sharp-libvips-linuxmusl-x64` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/lovell/sharp-libvips/releases)
- [Commits](https://github.com/lovell/sharp-libvips/commits/v1.3.0/npm/linuxmusl-x64)
Updates `@img/sharp-linux-arm64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/linux-arm64)
Updates `@img/sharp-linux-arm` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/linux-arm)
Updates `@img/sharp-linux-ppc64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/linux-ppc64)
Updates `@img/sharp-linux-riscv64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/linux-riscv64)
Updates `@img/sharp-linux-s390x` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/linux-s390x)
Updates `@img/sharp-linux-x64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/linux-x64)
Updates `@img/sharp-linuxmusl-arm64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/linuxmusl-arm64)
Updates `@img/sharp-linuxmusl-x64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/linuxmusl-x64)
Updates `@img/sharp-wasm32` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/wasm32)
Updates `@img/sharp-win32-arm64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/win32-arm64)
Updates `@img/sharp-win32-ia32` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/win32-ia32)
Updates `@img/sharp-win32-x64` from 0.34.5 to 0.35.1
- [Release notes](https://github.com/lovell/sharp/releases)
- [Commits](https://github.com/lovell/sharp/commits/v0.35.1/npm/win32-x64)
Updates `@parcel/watcher-android-arm64` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-darwin-arm64` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-darwin-x64` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-freebsd-x64` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-linux-arm-glibc` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-linux-arm-musl` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-linux-arm64-glibc` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-linux-arm64-musl` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-linux-x64-glibc` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-linux-x64-musl` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-win32-arm64` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-win32-ia32` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher-win32-x64` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@parcel/watcher` from 2.5.6 to 2.5.1
- [Release notes](https://github.com/parcel-bundler/watcher/releases)
- [Commits](https://github.com/parcel-bundler/watcher/compare/v2.5.6...v2.5.1)
Updates `@tailwindcss/node` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/packages/@tailwindcss-node)
Updates `@tailwindcss/oxide-android-arm64` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/android-arm64)
Updates `@tailwindcss/oxide-darwin-arm64` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/darwin-arm64)
Updates `@tailwindcss/oxide-darwin-x64` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/darwin-x64)
Updates `@tailwindcss/oxide-freebsd-x64` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/freebsd-x64)
Updates `@tailwindcss/oxide-linux-arm-gnueabihf` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/linux-arm-gnueabihf)
Updates `@tailwindcss/oxide-linux-arm64-gnu` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/linux-arm64-gnu)
Updates `@tailwindcss/oxide-linux-arm64-musl` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/linux-arm64-musl)
Updates `@tailwindcss/oxide-linux-x64-gnu` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/linux-x64-gnu)
Updates `@tailwindcss/oxide-linux-x64-musl` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/linux-x64-musl)
Updates `@tailwindcss/oxide-wasm32-wasi` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node)
Updates `@tailwindcss/oxide-win32-arm64-msvc` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/win32-arm64-msvc)
Updates `@tailwindcss/oxide-win32-x64-msvc` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node/npm/win32-x64-msvc)
Updates `@tailwindcss/oxide` from 4.1.18 to 4.3.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.1/crates/node)
Updates `@typescript-eslint/eslint-plugin` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/eslint-plugin)
Updates `@typescript-eslint/parser` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/parser)
Updates `@typescript-eslint/project-service` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/project-service/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/project-service)
Updates `@typescript-eslint/scope-manager` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/scope-manager/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/scope-manager)
Updates `@typescript-eslint/tsconfig-utils` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/tsconfig-utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/tsconfig-utils)
Updates `@typescript-eslint/type-utils` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/type-utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/type-utils)
Updates `@typescript-eslint/types` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/types)
Updates `@typescript-eslint/typescript-estree` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-estree/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/typescript-estree)
Updates `@typescript-eslint/utils` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/utils)
Updates `@typescript-eslint/visitor-keys` from 8.54.0 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/visitor-keys/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/visitor-keys)
Updates `@vitest/expect` from 4.0.18 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/expect)
Updates `@vitest/mocker` from 4.0.18 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/mocker)
Updates `@vitest/pretty-format` from 4.0.18 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/pretty-format)
Updates `@vitest/runner` from 4.0.18 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/runner)
Updates `@vitest/snapshot` from 4.0.18 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/snapshot)
Updates `@vitest/spy` from 4.0.18 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/spy)
Updates `@vitest/utils` from 4.0.18 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/utils)
Updates `ajv` from 6.12.6 to 6.15.0
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](https://github.com/ajv-validator/ajv/compare/v6.12.6...v6.15.0)
Updates `balanced-match` from 1.0.2 to 4.0.4
- [Release notes](https://github.com/juliangruber/balanced-match/releases)
- [Commits](https://github.com/juliangruber/balanced-match/compare/v1.0.2...v4.0.4)
Updates `baseline-browser-mapping` from 2.9.18 to 2.10.37
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](https://github.com/web-platform-dx/baseline-browser-mapping/compare/v2.9.18...v2.10.37)
Updates `brace-expansion` from 1.1.12 to 5.0.6
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](https://github.com/juliangruber/brace-expansion/compare/v1.1.12...v5.0.6)
Updates `browserslist` from 4.28.1 to 4.28.2
- [Release notes](https://github.com/browserslist/browserslist/releases)
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
- [Commits](https://github.com/browserslist/browserslist/compare/4.28.1...4.28.2)
Updates `caniuse-lite` from 1.0.30001766 to 1.0.30001799
- [Commits](https://github.com/browserslist/caniuse-lite/compare/1.0.30001766...1.0.30001799)
Updates `color-convert` from 2.0.1 to 3.1.3
- [Release notes](https://github.com/Qix-/color-convert/releases)
- [Changelog](https://github.com/Qix-/color-convert/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Qix-/color-convert/compare/2.0.1...3.1.3)
Updates `color-name` from 1.1.4 to 2.1.0
- [Release notes](https://github.com/colorjs/color-name/releases)
- [Commits](https://github.com/colorjs/color-name/commits)
Updates `detect-libc` from 2.1.2 to 1.0.3
- [Changelog](https://github.com/lovell/detect-libc/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lovell/detect-libc/compare/v2.1.2...v1.0.3)
Updates `electron-to-chromium` from 1.5.279 to 1.5.372
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Kilian/electron-to-chromium/compare/v1.5.279...v1.5.372)
Updates `enhanced-resolve` from 5.18.4 to 5.21.6
- [Release notes](https://github.com/webpack/enhanced-resolve/releases)
- [Changelog](https://github.com/webpack/enhanced-resolve/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webpack/enhanced-resolve/compare/v5.18.4...v5.21.6)
Updates `es-module-lexer` from 1.7.0 to 2.1.0
- [Release notes](https://github.com/guybedford/es-module-lexer/releases)
- [Commits](https://github.com/guybedford/es-module-lexer/compare/1.7.0...2.1.0)
Updates `eslint-scope` from 8.4.0 to 9.1.2
- [Release notes](https://github.com/eslint/js/releases)
- [Changelog](https://github.com/eslint/js/blob/main/packages/eslint-scope/CHANGELOG.md)
- [Commits](https://github.com/eslint/js/commits/eslint-scope-v9.1.2/packages/eslint-scope)
Updates `espree` from 10.4.0 to 11.2.0
- [Release notes](https://github.com/eslint/js/releases)
- [Changelog](https://github.com/eslint/js/blob/main/packages/espree/CHANGELOG.md)
- [Commits](https://github.com/eslint/js/commits/espree-v11.2.0/packages/espree)
Updates `flatted` from 3.3.3 to 3.4.2
- [Commits](https://github.com/WebReflection/flatted/compare/v3.3.3...v3.4.2)
Updates `jiti` from 2.6.1 to 2.7.0
- [Release notes](https://github.com/unjs/jiti/releases)
- [Changelog](https://github.com/unjs/jiti/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unjs/jiti/compare/v2.6.1...v2.7.0)
Updates `lightningcss-android-arm64` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-darwin-arm64` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-darwin-x64` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-freebsd-x64` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-linux-arm-gnueabihf` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-linux-arm64-gnu` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-linux-arm64-musl` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-linux-x64-gnu` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-linux-x64-musl` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-win32-arm64-msvc` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss-win32-x64-msvc` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `lightningcss` from 1.30.2 to 1.32.0
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.2...v1.32.0)
Updates `minimatch` from 3.1.2 to 10.2.5
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](https://github.com/isaacs/minimatch/compare/v3.1.2...v10.2.5)
Updates `nanoid` from 3.3.11 to 3.3.12
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ai/nanoid/compare/3.3.11...3.3.12)
Updates `node-releases` from 2.0.27 to 2.0.47
- [Commits](https://github.com/chicoxyzzy/node-releases/compare/v2.0.27...v2.0.47)
Updates `obug` from 2.1.1 to 2.1.3
- [Release notes](https://github.com/sxzz/obug/releases)
- [Commits](https://github.com/sxzz/obug/compare/v2.1.1...v2.1.3)
Updates `pg-cloudflare` from 1.3.0 to 1.4.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg-cloudflare@1.4.0/packages/pg-cloudflare)
Updates `pg-connection-string` from 2.10.1 to 2.13.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg-connection-string@2.13.0/packages/pg-connection-string)
Updates `pg-pool` from 3.11.0 to 3.14.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg-pool@3.14.0/packages/pg-pool)
Updates `pg-protocol` from 1.11.0 to 1.14.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg-protocol@1.14.0/packages/pg-protocol)
Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases)
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2)
Updates `semver` from 7.7.3 to 7.8.4
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](https://github.com/npm/node-semver/compare/v7.7.3...v7.8.4)
Updates `std-env` from 3.10.0 to 4.1.0
- [Release notes](https://github.com/unjs/std-env/releases)
- [Changelog](https://github.com/unjs/std-env/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unjs/std-env/compare/v3.10.0...v4.1.0)
Updates `tapable` from 2.3.0 to 2.3.3
- [Release notes](https://github.com/webpack/tapable/releases)
- [Changelog](https://github.com/webpack/tapable/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webpack/tapable/compare/v2.3.0...v2.3.3)
Updates `tinyexec` from 1.0.2 to 1.2.4
- [Release notes](https://github.com/tinylibs/tinyexec/releases)
- [Commits](https://github.com/tinylibs/tinyexec/compare/1.0.2...1.2.4)
Updates `tinyglobby` from 0.2.15 to 0.2.17
- [Release notes](https://github.com/SuperchupuDev/tinyglobby/releases)
- [Changelog](https://github.com/SuperchupuDev/tinyglobby/blob/main/CHANGELOG.md)
- [Commits](https://github.com/SuperchupuDev/tinyglobby/compare/0.2.15...0.2.17)
Updates `tinyrainbow` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/tinylibs/tinyrainbow/releases)
- [Commits](https://github.com/tinylibs/tinyrainbow/compare/v3.0.3...v3.1.0)
Updates `ts-api-utils` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/JoshuaKGoldberg/ts-api-utils/releases)
- [Changelog](https://github.com/JoshuaKGoldberg/ts-api-utils/blob/main/CHANGELOG.md)
- [Commits](https://github.com/JoshuaKGoldberg/ts-api-utils/compare/v2.4.0...v2.5.0)
Updates `undici-types` from 7.16.0 to 7.24.6
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](https://github.com/nodejs/undici/compare/v7.16.0...v7.24.6)
---
updated-dependencies:
- dependency-name: dotenv
 dependency-version: 17.4.2
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: handlebars
 dependency-version: 4.7.9
 dependency-type: direct:production
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: joi
 dependency-version: 18.2.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: js-yaml
 dependency-version: 4.2.0
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: lucide-react
 dependency-version: 1.18.0
 dependency-type: direct:production
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: openai
 dependency-version: 6.42.0
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: opencc-js
 dependency-version: 1.3.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: p-limit
 dependency-version: 7.3.0
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: pg
 dependency-version: 8.21.0
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@types/pg"
 dependency-version: 8.20.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: playwright-core
 dependency-version: 1.60.0
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: react
 dependency-version: 19.2.7
 dependency-type: direct:production
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@types/react"
 dependency-version: 19.2.17
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: react-dom
 dependency-version: 19.2.7
 dependency-type: direct:production
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: sharp
 dependency-version: 0.35.1
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: ws
 dependency-version: 8.21.0
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: zod
 dependency-version: 4.4.3
 dependency-type: direct:production
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: zod-to-json-schema
 dependency-version: 3.25.2
 dependency-type: direct:production
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@eslint/js"
 dependency-version: 10.0.1
 dependency-type: direct:development
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/cli"
 dependency-version: 4.3.1
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@types/node"
 dependency-version: 25.9.3
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@types/pg"
 dependency-version: 8.20.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@types/react"
 dependency-version: 19.2.17
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: autoprefixer
 dependency-version: 10.5.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: eslint
 dependency-version: 10.5.0
 dependency-type: direct:development
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: nodemon
 dependency-version: 3.1.14
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: postcss
 dependency-version: 8.5.15
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: prettier
 dependency-version: 3.8.4
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: tailwindcss
 dependency-version: 4.3.1
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: tsx
 dependency-version: 4.22.4
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: typescript
 dependency-version: 6.0.3
 dependency-type: direct:development
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: typescript-eslint
 dependency-version: 8.61.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: vitest
 dependency-version: 4.1.8
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@emnapi/runtime"
 dependency-version: 1.11.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@esbuild/netbsd-arm64"
 dependency-version: 0.27.7
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@esbuild/openbsd-arm64"
 dependency-version: 0.27.7
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@esbuild/openharmony-arm64"
 dependency-version: 0.27.7
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@eslint/config-array"
 dependency-version: 0.23.5
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@eslint/config-helpers"
 dependency-version: 0.6.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@eslint/core"
 dependency-version: 1.2.1
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: "@eslint/object-schema"
 dependency-version: 3.0.5
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: "@eslint/plugin-kit"
 dependency-version: 0.7.2
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@hapi/tlds"
 dependency-version: 1.1.7
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@humanfs/core"
 dependency-version: 0.19.2
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@humanfs/node"
 dependency-version: 0.16.8
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@img/colour"
 dependency-version: 1.1.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-darwin-arm64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-darwin-x64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-darwin-arm64"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-darwin-x64"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-linux-arm64"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-linux-arm"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-linux-ppc64"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-linux-riscv64"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-linux-s390x"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-linux-x64"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-linuxmusl-arm64"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-libvips-linuxmusl-x64"
 dependency-version: 1.3.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-linux-arm64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-linux-arm"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-linux-ppc64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-linux-riscv64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-linux-s390x"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-linux-x64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-linuxmusl-arm64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-linuxmusl-x64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-wasm32"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-win32-arm64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-win32-ia32"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@img/sharp-win32-x64"
 dependency-version: 0.35.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-android-arm64"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-darwin-arm64"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-darwin-x64"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-freebsd-x64"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-linux-arm-glibc"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-linux-arm-musl"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-linux-arm64-glibc"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-linux-arm64-musl"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-linux-x64-glibc"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-linux-x64-musl"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-win32-arm64"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-win32-ia32"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher-win32-x64"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@parcel/watcher"
 dependency-version: 2.5.1
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/node"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-android-arm64"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-darwin-arm64"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-darwin-x64"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-freebsd-x64"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-linux-arm-gnueabihf"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-linux-arm64-gnu"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-linux-arm64-musl"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-linux-x64-gnu"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-linux-x64-musl"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-wasm32-wasi"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-win32-arm64-msvc"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide-win32-x64-msvc"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@tailwindcss/oxide"
 dependency-version: 4.3.1
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/parser"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/project-service"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/scope-manager"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/tsconfig-utils"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/type-utils"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/types"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/typescript-estree"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/utils"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@typescript-eslint/visitor-keys"
 dependency-version: 8.61.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@vitest/expect"
 dependency-version: 4.1.8
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@vitest/mocker"
 dependency-version: 4.1.8
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@vitest/pretty-format"
 dependency-version: 4.1.8
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@vitest/runner"
 dependency-version: 4.1.8
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@vitest/snapshot"
 dependency-version: 4.1.8
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@vitest/spy"
 dependency-version: 4.1.8
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: "@vitest/utils"
 dependency-version: 4.1.8
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: ajv
 dependency-version: 6.15.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: balanced-match
 dependency-version: 4.0.4
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: baseline-browser-mapping
 dependency-version: 2.10.37
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: brace-expansion
 dependency-version: 5.0.6
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: browserslist
 dependency-version: 4.28.2
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: caniuse-lite
 dependency-version: 1.0.30001799
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: color-convert
 dependency-version: 3.1.3
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: color-name
 dependency-version: 2.1.0
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: detect-libc
 dependency-version: 1.0.3
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: electron-to-chromium
 dependency-version: 1.5.372
 dependency-type: indirect
 update-type: version-update:semver-patch
 dependency-group: dev-dependencies
- dependency-name: enhanced-resolve
 dependency-version: 5.21.6
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: es-module-lexer
 dependency-version: 2.1.0
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: eslint-scope
 dependency-version: 9.1.2
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: espree
 dependency-version: 11.2.0
 dependency-type: indirect
 update-type: version-update:semver-major
 dependency-group: dev-dependencies
- dependency-name: flatted
 dependency-version: 3.4.2
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: jiti
 dependency-version: 2.7.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: lightningcss-android-arm64
 dependency-version: 1.32.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: lightningcss-darwin-arm64
 dependency-version: 1.32.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: lightningcss-darwin-x64
 dependency-version: 1.32.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: lightningcss-freebsd-x64
 dependency-version: 1.32.0
 dependency-type: indirect
 update-type: version-update:semver-minor
 dependency-group: dev-dependencies
- dependency-name: lightningcss-linux-arm-gnueabihf
 dependency-version: 1.32.0
 dep...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Reviewers

@xiaocaoooo xiaocaoooo Awaiting requested review from xiaocaoooo

At least 1 approving review is required to merge this pull request.

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant

AltStyle によって変換されたページ (->オリジナル) /