bump version in package.json, upgrade dependencies

This commit is contained in:
Egor Tensin 2024-01-28 11:18:12 +01:00
parent 33bc58ef4a
commit 2d40e8046a
188 changed files with 30772 additions and 71 deletions

12
node_modules/undici/lib/cookies/constants.js generated vendored Normal file
View file

@ -0,0 +1,12 @@
'use strict'
// https://wicg.github.io/cookie-store/#cookie-maximum-attribute-value-size
const maxAttributeValueSize = 1024
// https://wicg.github.io/cookie-store/#cookie-maximum-name-value-pair-size
const maxNameValuePairSize = 4096
module.exports = {
maxAttributeValueSize,
maxNameValuePairSize
}