mirror of
https://github.com/SukkaW/Surge.git
synced 2026-09-12 10:34:35 +08:00
Housekeeping
This commit is contained in:
@@ -32,7 +32,7 @@ const buildTelegramCIDR = task(require.main === module, 'build-telegram-cidr')(a
|
|||||||
return lastModified ? new Date(lastModified) : new Date();
|
return lastModified ? new Date(lastModified) : new Date();
|
||||||
});
|
});
|
||||||
|
|
||||||
// https://github.com/tdlib/td/blob/master/td/telegram/ConfigManager.cpp
|
// https://github.com/tdlib/td/blob/master/td/ConfigManager.cpp
|
||||||
const backupEndpoints = await childSpan.traceChildAsync(
|
const backupEndpoints = await childSpan.traceChildAsync(
|
||||||
'fetch backup ip',
|
'fetch backup ip',
|
||||||
innerSpan => fetchTelegramBackupEndpoints(innerSpan, { includeTestServers: true })
|
innerSpan => fetchTelegramBackupEndpoints(innerSpan, { includeTestServers: true })
|
||||||
@@ -56,7 +56,7 @@ const buildTelegramCIDR = task(require.main === module, 'build-telegram-cidr')(a
|
|||||||
' - https://core.telegram.org/resources/cidr.txt'
|
' - https://core.telegram.org/resources/cidr.txt'
|
||||||
];
|
];
|
||||||
|
|
||||||
return new RulesetOutput(span, 'telegram', 'ip')
|
return new RulesetOutput(span, 'teleproto', 'ip')
|
||||||
.withTitle('Sukka\'s Ruleset - Telegram IP CIDR')
|
.withTitle('Sukka\'s Ruleset - Telegram IP CIDR')
|
||||||
.withDescription(description)
|
.withDescription(description)
|
||||||
// .withDate(date) // With extra data source, we no longer use last-modified for file date
|
// .withDate(date) // With extra data source, we no longer use last-modified for file date
|
||||||
@@ -72,11 +72,11 @@ const buildTelegramCIDR = task(require.main === module, 'build-telegram-cidr')(a
|
|||||||
import path from 'node:path';
|
import path from 'node:path';
|
||||||
import process from 'node:process';
|
import process from 'node:process';
|
||||||
|
|
||||||
import { Api as TgApi, TelegramClient as TgClient } from 'telegram';
|
import { Api as TgApi, TelegramClient as TgClient } from 'teleproto';
|
||||||
import { AuthKey as TgAuthKey } from 'telegram/crypto/AuthKey';
|
import { AuthKey as TgAuthKey } from 'teleproto/crypto/AuthKey';
|
||||||
import { Logger as TgLogger, LogLevel as TgLogLevel } from 'telegram/extensions/Logger';
|
import { Logger as TgLogger, LogLevel as TgLogLevel } from 'teleproto/extensions/Logger';
|
||||||
import { ConnectionTCPAbridged as TgConnectionTCPAbridged } from 'telegram/network/connection';
|
import { ConnectionTCPAbridged as TgConnectionTCPAbridged } from 'teleproto/network/connection';
|
||||||
import { MemorySession as TgMemorySession } from 'telegram/sessions';
|
import { MemorySession as TgMemorySession } from 'teleproto/sessions';
|
||||||
import type { Buffer } from 'node:buffer';
|
import type { Buffer } from 'node:buffer';
|
||||||
import type { Span } from './trace';
|
import type { Span } from './trace';
|
||||||
import { mtprotoAuthKeyStore } from './lib/mtproto-auth-key-store';
|
import { mtprotoAuthKeyStore } from './lib/mtproto-auth-key-store';
|
||||||
@@ -136,9 +136,7 @@ async function fetchConfig(host: string, port: number, dcId: number, persistedAu
|
|||||||
securityChecks: true,
|
securityChecks: true,
|
||||||
systemLangCode: 'en',
|
systemLangCode: 'en',
|
||||||
systemVersion: process.platform,
|
systemVersion: process.platform,
|
||||||
timeout: 10,
|
timeout: 10
|
||||||
// GramJS uses this option to select port 443 even for a raw TCP connection.
|
|
||||||
useWSS: true
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const work = async () => {
|
const work = async () => {
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
// apv3.stel.com tapv3.stel.com
|
// apv3.stel.com tapv3.stel.com
|
||||||
import { Buffer } from 'node:buffer';
|
import { Buffer } from 'node:buffer';
|
||||||
import crypto from 'node:crypto';
|
import crypto from 'node:crypto';
|
||||||
import { BinaryReader as TgBinaryReader } from 'telegram/extensions/BinaryReader';
|
import { BinaryReader as TgBinaryReader } from 'teleproto/extensions/BinaryReader';
|
||||||
import { Api as TgApi } from 'telegram/tl/api';
|
import { Api as TgApi } from 'teleproto/tl/api';
|
||||||
import { bigint2ip } from 'fast-cidr-tools';
|
import { bigint2ip } from 'fast-cidr-tools';
|
||||||
|
|
||||||
import { base64ToUint8Array, concatUint8Arrays } from 'foxts/uint8array-utils';
|
import { base64ToUint8Array, concatUint8Arrays } from 'foxts/uint8array-utils';
|
||||||
|
|||||||
@@ -39,10 +39,10 @@
|
|||||||
"picocolors": "^1.1.1",
|
"picocolors": "^1.1.1",
|
||||||
"stable-hash": "^0.0.6",
|
"stable-hash": "^0.0.6",
|
||||||
"tar-fs": "^3.1.3",
|
"tar-fs": "^3.1.3",
|
||||||
"telegram": "^2.26.22",
|
"teleproto": "1.229.0",
|
||||||
"tinyglobby": "^0.2.17",
|
"tinyglobby": "^0.2.17",
|
||||||
"tldts": "^7.4.11",
|
"tldts": "^7.4.12",
|
||||||
"tldts-experimental": "^7.4.11",
|
"tldts-experimental": "^7.4.12",
|
||||||
"undici": "^8.10.2",
|
"undici": "^8.10.2",
|
||||||
"undici-cache-store-better-sqlite3": "^1.1.1",
|
"undici-cache-store-better-sqlite3": "^1.1.1",
|
||||||
"why-is-node-running": "^3.2.2",
|
"why-is-node-running": "^3.2.2",
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
"@types/cacache": "^20.0.1",
|
"@types/cacache": "^20.0.1",
|
||||||
"@types/cli-progress": "^3.11.6",
|
"@types/cli-progress": "^3.11.6",
|
||||||
"@types/mocha": "^10.0.10",
|
"@types/mocha": "^10.0.10",
|
||||||
"@types/node": "^26.4.1",
|
"@types/node": "^26.5.1",
|
||||||
"@types/tar-fs": "^2.0.4",
|
"@types/tar-fs": "^2.0.4",
|
||||||
"@types/yauzl-promise": "^4.0.1",
|
"@types/yauzl-promise": "^4.0.1",
|
||||||
"earl": "^2.0.0",
|
"earl": "^2.0.0",
|
||||||
|
|||||||
346
pnpm-lock.yaml
generated
346
pnpm-lock.yaml
generated
@@ -172,18 +172,18 @@ importers:
|
|||||||
tar-fs:
|
tar-fs:
|
||||||
specifier: ^3.1.3
|
specifier: ^3.1.3
|
||||||
version: 3.1.3
|
version: 3.1.3
|
||||||
telegram:
|
teleproto:
|
||||||
specifier: ^2.26.22
|
specifier: 1.229.0
|
||||||
version: 2.26.22(supports-color@8.1.1)
|
version: 1.229.0
|
||||||
tinyglobby:
|
tinyglobby:
|
||||||
specifier: ^0.2.17
|
specifier: ^0.2.17
|
||||||
version: 0.2.17
|
version: 0.2.17
|
||||||
tldts:
|
tldts:
|
||||||
specifier: ^7.4.11
|
specifier: ^7.4.12
|
||||||
version: 7.4.11
|
version: 7.4.12
|
||||||
tldts-experimental:
|
tldts-experimental:
|
||||||
specifier: ^7.4.11
|
specifier: ^7.4.12
|
||||||
version: 7.4.11
|
version: 7.4.12
|
||||||
undici:
|
undici:
|
||||||
specifier: ^8.10.2
|
specifier: ^8.10.2
|
||||||
version: 8.10.2
|
version: 8.10.2
|
||||||
@@ -222,8 +222,8 @@ importers:
|
|||||||
specifier: ^10.0.10
|
specifier: ^10.0.10
|
||||||
version: 10.0.10
|
version: 10.0.10
|
||||||
'@types/node':
|
'@types/node':
|
||||||
specifier: ^26.4.1
|
specifier: ^26.5.1
|
||||||
version: 26.4.1
|
version: 26.5.1
|
||||||
'@types/tar-fs':
|
'@types/tar-fs':
|
||||||
specifier: ^2.0.4
|
specifier: ^2.0.4
|
||||||
version: 2.0.4
|
version: 2.0.4
|
||||||
@@ -266,9 +266,6 @@ packages:
|
|||||||
'@cacheable/utils@2.5.0':
|
'@cacheable/utils@2.5.0':
|
||||||
resolution: {integrity: sha512-buipgOVDkkPXNR5+xBpDw7Zk2n1EvU7qBJCNUcL7rhQ//kfpOXPAvQ511Os0vpLYJ1pZnvudNytkQt2hst3wqA==}
|
resolution: {integrity: sha512-buipgOVDkkPXNR5+xBpDw7Zk2n1EvU7qBJCNUcL7rhQ//kfpOXPAvQ511Os0vpLYJ1pZnvudNytkQt2hst3wqA==}
|
||||||
|
|
||||||
'@cryptography/aes@0.1.1':
|
|
||||||
resolution: {integrity: sha512-PcYz4FDGblO6tM2kSC+VzhhK62vml6k6/YAkiWtyPvrgJVfnDRoHGDtKn5UiaRRUrvUTTocBpvc2rRgTCqxjsg==}
|
|
||||||
|
|
||||||
'@emnapi/core@1.10.0':
|
'@emnapi/core@1.10.0':
|
||||||
resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
|
resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
|
||||||
|
|
||||||
@@ -880,8 +877,8 @@ packages:
|
|||||||
'@types/mocha@10.0.10':
|
'@types/mocha@10.0.10':
|
||||||
resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
|
resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
|
||||||
|
|
||||||
'@types/node@26.4.1':
|
'@types/node@26.5.1':
|
||||||
resolution: {integrity: sha512-k97ENvZWtvA6yqz5/FS6a7duDgOPEeOQOc2iKS/nY6mX6qJUKtLnWzQS+Xj6tXweyj6ZcTAK2Qecetnvi9nCLA==}
|
resolution: {integrity: sha512-CzNm2FezW4VR/LjG6yUdiEgLE/rAQ9Slj5gCu/C2VrdcW7I0ahNZ8DRbHT7zOZ6r3ONgd/bsQIeSaoDGrd1C6g==}
|
||||||
|
|
||||||
'@types/tar-fs@2.0.4':
|
'@types/tar-fs@2.0.4':
|
||||||
resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
|
resolution: {integrity: sha512-ipPec0CjTmVDWE+QKr9cTmIIoTl7dFG/yARCM5MqK8i6CNLIG1P8x4kwDsOQY1ChZOZjH0wO9nvfgBvWl4R3kA==}
|
||||||
@@ -1088,9 +1085,6 @@ packages:
|
|||||||
argparse@2.0.1:
|
argparse@2.0.1:
|
||||||
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
||||||
|
|
||||||
async-mutex@0.3.2:
|
|
||||||
resolution: {integrity: sha512-HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA==}
|
|
||||||
|
|
||||||
b4a@1.6.7:
|
b4a@1.6.7:
|
||||||
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
|
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
|
||||||
|
|
||||||
@@ -1128,9 +1122,6 @@ packages:
|
|||||||
bare-events:
|
bare-events:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
base64-js@1.5.1:
|
|
||||||
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
||||||
|
|
||||||
better-sqlite3@13.0.3:
|
better-sqlite3@13.0.3:
|
||||||
resolution: {integrity: sha512-RbOBxmLBG8uvFUc15X9+9SFemKcQ0WBuISBVkpuiaUB2qblC8UWlHEjdWVoZ8AdhSwmoEgsiXKfopX0CQxaACQ==}
|
resolution: {integrity: sha512-RbOBxmLBG8uvFUc15X9+9SFemKcQ0WBuISBVkpuiaUB2qblC8UWlHEjdWVoZ8AdhSwmoEgsiXKfopX0CQxaACQ==}
|
||||||
engines: {node: '>=22'}
|
engines: {node: '>=22'}
|
||||||
@@ -1149,13 +1140,6 @@ packages:
|
|||||||
buffer-from@1.1.2:
|
buffer-from@1.1.2:
|
||||||
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
||||||
|
|
||||||
buffer@6.0.3:
|
|
||||||
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
|
|
||||||
|
|
||||||
bufferutil@4.0.9:
|
|
||||||
resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
|
|
||||||
engines: {node: '>=6.14.2'}
|
|
||||||
|
|
||||||
cacache@21.0.1:
|
cacache@21.0.1:
|
||||||
resolution: {integrity: sha512-pTwz/uj3Jyp6WXdJ6fWhR+7LVxVs6RyroQSn7KJwHsSxXuyGSp0pcMVcwSwTpCFq1X2YG8QBe0W+vN+cr0SwzA==}
|
resolution: {integrity: sha512-pTwz/uj3Jyp6WXdJ6fWhR+7LVxVs6RyroQSn7KJwHsSxXuyGSp0pcMVcwSwTpCFq1X2YG8QBe0W+vN+cr0SwzA==}
|
||||||
engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
|
engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0}
|
||||||
@@ -1200,18 +1184,6 @@ packages:
|
|||||||
csv-parse@7.0.2:
|
csv-parse@7.0.2:
|
||||||
resolution: {integrity: sha512-uKZghv9UmPkMVLYy//KZ9HFAIJsl7wkhoEdIL0+rhuSY9pZQlhaeGEDPIe+/w7eh81MOql8Q/9+inAGWG6ZHYA==}
|
resolution: {integrity: sha512-uKZghv9UmPkMVLYy//KZ9HFAIJsl7wkhoEdIL0+rhuSY9pZQlhaeGEDPIe+/w7eh81MOql8Q/9+inAGWG6ZHYA==}
|
||||||
|
|
||||||
d@1.0.2:
|
|
||||||
resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
|
|
||||||
engines: {node: '>=0.12'}
|
|
||||||
|
|
||||||
debug@2.6.9:
|
|
||||||
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
|
|
||||||
peerDependencies:
|
|
||||||
supports-color: '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
supports-color:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
debug@4.4.3:
|
debug@4.4.3:
|
||||||
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
||||||
engines: {node: '>=6.0'}
|
engines: {node: '>=6.0'}
|
||||||
@@ -1235,22 +1207,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-svtcdpS8CgJyqAjEQIXdb3OjhFVVYjzGAPO8WGCmRbrml64SPw/jJD4GoE98aR7r25A0XcgrK3F02yw9R/vhQw==}
|
resolution: {integrity: sha512-svtcdpS8CgJyqAjEQIXdb3OjhFVVYjzGAPO8WGCmRbrml64SPw/jJD4GoE98aR7r25A0XcgrK3F02yw9R/vhQw==}
|
||||||
engines: {node: '>=0.3.1'}
|
engines: {node: '>=0.3.1'}
|
||||||
|
|
||||||
dom-serializer@1.4.1:
|
|
||||||
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
|
|
||||||
|
|
||||||
domain-alive@0.1.25:
|
domain-alive@0.1.25:
|
||||||
resolution: {integrity: sha512-S3NXngSmSg2DBQHdrfzSGWe96yqIm19LJORvYqoVDXkLyG0tDoQTwbGorgbCkFkCakBdoq9KTAsjTkFNi2fMbQ==}
|
resolution: {integrity: sha512-S3NXngSmSg2DBQHdrfzSGWe96yqIm19LJORvYqoVDXkLyG0tDoQTwbGorgbCkFkCakBdoq9KTAsjTkFNi2fMbQ==}
|
||||||
|
|
||||||
domelementtype@2.3.0:
|
|
||||||
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
|
|
||||||
|
|
||||||
domhandler@4.3.1:
|
|
||||||
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
|
|
||||||
engines: {node: '>= 4'}
|
|
||||||
|
|
||||||
domutils@2.8.0:
|
|
||||||
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
|
|
||||||
|
|
||||||
earl@2.0.0:
|
earl@2.0.0:
|
||||||
resolution: {integrity: sha512-je2x7VWHNN3kN5zqcUUeEEokHoL7HWwiOxCdlLi66LkMqUnLECVZGePdgBtrqLrUg25bHLFrM+bkBXwcI7f+EQ==}
|
resolution: {integrity: sha512-je2x7VWHNN3kN5zqcUUeEEokHoL7HWwiOxCdlLi66LkMqUnLECVZGePdgBtrqLrUg25bHLFrM+bkBXwcI7f+EQ==}
|
||||||
|
|
||||||
@@ -1264,23 +1223,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-L1l8TNvomm6UVW5B253AGxQagSQr+vGwhMlrrfRS2qmhx46AMpMVJKQYLvWYbysTMY8VoicOvzHzoHMbyzB+4A==}
|
resolution: {integrity: sha512-L1l8TNvomm6UVW5B253AGxQagSQr+vGwhMlrrfRS2qmhx46AMpMVJKQYLvWYbysTMY8VoicOvzHzoHMbyzB+4A==}
|
||||||
engines: {node: '>=10.13.0'}
|
engines: {node: '>=10.13.0'}
|
||||||
|
|
||||||
entities@2.2.0:
|
|
||||||
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
|
|
||||||
|
|
||||||
error-stack-parser@2.1.4:
|
error-stack-parser@2.1.4:
|
||||||
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
|
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
|
||||||
|
|
||||||
es5-ext@0.10.64:
|
|
||||||
resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
|
|
||||||
engines: {node: '>=0.10'}
|
|
||||||
|
|
||||||
es6-iterator@2.0.3:
|
|
||||||
resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
|
|
||||||
|
|
||||||
es6-symbol@3.1.4:
|
|
||||||
resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
|
|
||||||
engines: {node: '>=0.12'}
|
|
||||||
|
|
||||||
escape-string-regexp@4.0.0:
|
escape-string-regexp@4.0.0:
|
||||||
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
@@ -1420,10 +1365,6 @@ packages:
|
|||||||
jiti:
|
jiti:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
esniff@2.0.1:
|
|
||||||
resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
|
|
||||||
engines: {node: '>=0.10'}
|
|
||||||
|
|
||||||
espree@11.2.0:
|
espree@11.2.0:
|
||||||
resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
|
resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
||||||
@@ -1444,12 +1385,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
event-emitter@0.3.5:
|
|
||||||
resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
|
|
||||||
|
|
||||||
ext@1.7.0:
|
|
||||||
resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
|
|
||||||
|
|
||||||
fast-cidr-tools@0.3.4:
|
fast-cidr-tools@0.3.4:
|
||||||
resolution: {integrity: sha512-WQNW+ynysAsI+O3YX2269Ff1wx6+xTyKrtLPN0TaZOf5ZZfFNPS59J0vmCrJbpno5z3vJ5sX4wUHpJL7avuHLg==}
|
resolution: {integrity: sha512-WQNW+ynysAsI+O3YX2269Ff1wx6+xTyKrtLPN0TaZOf5ZZfFNPS59J0vmCrJbpno5z3vJ5sX4wUHpJL7avuHLg==}
|
||||||
engines: {node: '>=16'}
|
engines: {node: '>=16'}
|
||||||
@@ -1556,12 +1491,6 @@ packages:
|
|||||||
hookified@2.2.0:
|
hookified@2.2.0:
|
||||||
resolution: {integrity: sha512-p/LgFzRN5FeoD3DLS6bkUapeye6E4SI6yJs6KetENd18S+FBthqYq2amJUWpt5z0EQwwHemidjY5OqJGEKm5uA==}
|
resolution: {integrity: sha512-p/LgFzRN5FeoD3DLS6bkUapeye6E4SI6yJs6KetENd18S+FBthqYq2amJUWpt5z0EQwwHemidjY5OqJGEKm5uA==}
|
||||||
|
|
||||||
htmlparser2@6.1.0:
|
|
||||||
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
|
|
||||||
|
|
||||||
ieee754@1.2.1:
|
|
||||||
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
||||||
|
|
||||||
ignore@5.3.2:
|
ignore@5.3.2:
|
||||||
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
||||||
engines: {node: '>= 4'}
|
engines: {node: '>= 4'}
|
||||||
@@ -1601,9 +1530,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
|
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
is-typedarray@1.0.0:
|
|
||||||
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
|
|
||||||
|
|
||||||
is-unicode-supported@0.1.0:
|
is-unicode-supported@0.1.0:
|
||||||
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
|
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
@@ -1696,9 +1622,6 @@ packages:
|
|||||||
engines: {node: ^20.19.0 || >=22.12.0}
|
engines: {node: ^20.19.0 || >=22.12.0}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
ms@2.0.0:
|
|
||||||
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
|
|
||||||
|
|
||||||
ms@2.1.3:
|
ms@2.1.3:
|
||||||
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
||||||
|
|
||||||
@@ -1710,17 +1633,10 @@ packages:
|
|||||||
natural-compare@1.4.0:
|
natural-compare@1.4.0:
|
||||||
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
||||||
|
|
||||||
next-tick@1.1.0:
|
|
||||||
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
|
|
||||||
|
|
||||||
node-addon-api@8.9.2:
|
node-addon-api@8.9.2:
|
||||||
resolution: {integrity: sha512-VijLXbi3UACN69I0JVXJsX4tjACjNoQDgv2gTF6sx2wWEi8tkSg2eX8p5gSIFi8z2+DL3oHmY6OyKce38SDolg==}
|
resolution: {integrity: sha512-VijLXbi3UACN69I0JVXJsX4tjACjNoQDgv2gTF6sx2wWEi8tkSg2eX8p5gSIFi8z2+DL3oHmY6OyKce38SDolg==}
|
||||||
engines: {node: ^18 || ^20 || >= 21}
|
engines: {node: ^18 || ^20 || >= 21}
|
||||||
|
|
||||||
node-gyp-build@4.8.4:
|
|
||||||
resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
node-localstorage@2.2.1:
|
node-localstorage@2.2.1:
|
||||||
resolution: {integrity: sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==}
|
resolution: {integrity: sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==}
|
||||||
engines: {node: '>=0.12'}
|
engines: {node: '>=0.12'}
|
||||||
@@ -1751,12 +1667,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-VaWRu2i4FJNRtiRWCuuQRgfQ1B7a6+gMSrO+3j0EQi/k0ULfS9kosRxGoiqwzIjZTDI02tGfk5mXXltLg6QtfQ==}
|
resolution: {integrity: sha512-VaWRu2i4FJNRtiRWCuuQRgfQ1B7a6+gMSrO+3j0EQi/k0ULfS9kosRxGoiqwzIjZTDI02tGfk5mXXltLg6QtfQ==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
pako@2.1.0:
|
|
||||||
resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
|
|
||||||
|
|
||||||
path-browserify@1.0.1:
|
|
||||||
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
|
|
||||||
|
|
||||||
path-exists@4.0.0:
|
path-exists@4.0.0:
|
||||||
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -1799,9 +1709,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-Kko+Y5XQ6fM+Ce3dq3m9YGxnacYZYl9cA1wZjaF3Vbry2L3i1qVg8+CAgNPsXRArPMUMCaOR7oa9Nqntc43JKA==}
|
resolution: {integrity: sha512-Kko+Y5XQ6fM+Ce3dq3m9YGxnacYZYl9cA1wZjaF3Vbry2L3i1qVg8+CAgNPsXRArPMUMCaOR7oa9Nqntc43JKA==}
|
||||||
engines: {node: '>= 20.19.0'}
|
engines: {node: '>= 20.19.0'}
|
||||||
|
|
||||||
real-cancellable-promise@1.2.3:
|
|
||||||
resolution: {integrity: sha512-hBI5Gy/55VEeeMtImMgEirD7eq5UmqJf1J8dFZtbJZA/3rB0pYFZ7PayMGueb6v4UtUtpKpP+05L0VwyE1hI9Q==}
|
|
||||||
|
|
||||||
refa@0.12.1:
|
refa@0.12.1:
|
||||||
resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
|
resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
|
||||||
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
||||||
@@ -1910,9 +1817,9 @@ packages:
|
|||||||
tar-stream@3.1.7:
|
tar-stream@3.1.7:
|
||||||
resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
|
resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
|
||||||
|
|
||||||
telegram@2.26.22:
|
teleproto@1.229.0:
|
||||||
resolution: {integrity: sha512-EIj7Yrjiu0Yosa3FZ/7EyPg9s6UiTi/zDQrFmR/2Mg7pIUU+XjAit1n1u9OU9h2oRnRM5M+67/fxzQluZpaJJg==}
|
resolution: {integrity: sha512-aEKx22ZS76SYy26eWR+2oV5XM4+orbq/2ZINvSKoV2SZERn6yqq9mw5lNK22nCax7lTnC0gcz8uqP26gaUxEqA==}
|
||||||
deprecated: This package is archived and no longer maintained. Development continues in teleproto (https://npmjs.com/package/teleproto), a largely compatible, actively maintained fork. See the migration guide at https://docs.teleproto.dev/migrating-from-gramjs
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
text-decoder@1.2.3:
|
text-decoder@1.2.3:
|
||||||
resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
|
resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
|
||||||
@@ -1921,14 +1828,14 @@ packages:
|
|||||||
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
|
resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
|
||||||
engines: {node: '>=12.0.0'}
|
engines: {node: '>=12.0.0'}
|
||||||
|
|
||||||
tldts-core@7.4.11:
|
tldts-core@7.4.12:
|
||||||
resolution: {integrity: sha512-CW3WN2rIIE/Of21mulhgnGOwoDyEFNygyIBOONSdyAuSATgMMUCpLeUlB+E8sAwA5xRV9hYPl+kyZ9citHCaKg==}
|
resolution: {integrity: sha512-nYNzS2WRf4QJmjzFFgAxLOBjyBxAGRbCy9PVBPaglcYyYajh40VBn+v5Ngr96ZMc7oM0+aCJdtQnNejvdBnXMQ==}
|
||||||
|
|
||||||
tldts-experimental@7.4.11:
|
tldts-experimental@7.4.12:
|
||||||
resolution: {integrity: sha512-xbNzxktqwNYSryb4FclztEZ+G5waTnMCVBnwoWD1Fq0gjOykgr0rQWe4/2TdIJYHbyjIol5pdNh7OmCRWxIltw==}
|
resolution: {integrity: sha512-9ekSzO1PiwKHPS+WfA4EIXj49c8hFLi5TeEnW1xAlc6EufOX4Owp1rSC6HoSWq34z3cFLa7Ov2wUQm4fy+31xA==}
|
||||||
|
|
||||||
tldts@7.4.11:
|
tldts@7.4.12:
|
||||||
resolution: {integrity: sha512-aBiNayCfTQxuIJBm06M+xR14cYaYlDlSXZbgsnKzKNxDKUVq7KFwTjwBSsb7m9Y5xO8WfPnBc63WaYFMTGlvqw==}
|
resolution: {integrity: sha512-WylhSDKVeYnWXL3a+vKTaOxjnOeEGw938hImY8zoRWJjRRK/Jp1K+IihBzIONpUmW4e3WmXT6q5FW6vlESVZCA==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
ts-api-utils@2.5.0:
|
ts-api-utils@2.5.0:
|
||||||
@@ -1937,10 +1844,6 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: '>=4.8.4'
|
typescript: '>=4.8.4'
|
||||||
|
|
||||||
ts-custom-error@3.3.1:
|
|
||||||
resolution: {integrity: sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==}
|
|
||||||
engines: {node: '>=14.0.0'}
|
|
||||||
|
|
||||||
ts-declaration-location@1.0.7:
|
ts-declaration-location@1.0.7:
|
||||||
resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
|
resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -1953,12 +1856,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
||||||
engines: {node: '>= 0.8.0'}
|
engines: {node: '>= 0.8.0'}
|
||||||
|
|
||||||
type@2.7.3:
|
|
||||||
resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
|
|
||||||
|
|
||||||
typedarray-to-buffer@3.1.5:
|
|
||||||
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
|
|
||||||
|
|
||||||
typescript-eslint@8.66.0:
|
typescript-eslint@8.66.0:
|
||||||
resolution: {integrity: sha512-QlEbBPz/RuJ1XUHj29nm3t0F/O/cSlEnntozqPOYHnnTGAXFamnMBu5i9Vn6vhUPHGAjR+Vl+5J8vPN/BMUrJw==}
|
resolution: {integrity: sha512-QlEbBPz/RuJ1XUHj29nm3t0F/O/cSlEnntozqPOYHnnTGAXFamnMBu5i9Vn6vhUPHGAjR+Vl+5J8vPN/BMUrJw==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
@@ -1976,8 +1873,8 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
undici: '>=7.0.0'
|
undici: '>=7.0.0'
|
||||||
|
|
||||||
undici-types@8.3.0:
|
undici-types@8.9.0:
|
||||||
resolution: {integrity: sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==}
|
resolution: {integrity: sha512-KTDyRTYX8sWmKXAikPHHSyc63CRPETMctyjKFupcC6OBLXT3xsN0e9aF7m+mIXutFWpUXuedtowG7iLOzp0kQg==}
|
||||||
|
|
||||||
undici@8.10.2:
|
undici@8.10.2:
|
||||||
resolution: {integrity: sha512-/y4/bH9YNU5hi9NIrpOuvGXFcxrj3CMrV+/AYpowAYTpHn8gX/XPFjNy766FPoYY0miQhdW977JFWKGNhBdwyQ==}
|
resolution: {integrity: sha512-/y4/bH9YNU5hi9NIrpOuvGXFcxrj3CMrV+/AYpowAYTpHn8gX/XPFjNy766FPoYY0miQhdW977JFWKGNhBdwyQ==}
|
||||||
@@ -1989,18 +1886,10 @@ packages:
|
|||||||
uri-js@4.4.1:
|
uri-js@4.4.1:
|
||||||
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
||||||
|
|
||||||
utf-8-validate@5.0.10:
|
|
||||||
resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
|
|
||||||
engines: {node: '>=6.14.2'}
|
|
||||||
|
|
||||||
verkit@0.3.2:
|
verkit@0.3.2:
|
||||||
resolution: {integrity: sha512-zj/ob3UsvJGN0whEAKFp53REA5X66hvffVqoCtVQAakJKnKlH+/PcOfMoFwIG/o4rElqLv/ycAFlx8ZlXUorCg==}
|
resolution: {integrity: sha512-zj/ob3UsvJGN0whEAKFp53REA5X66hvffVqoCtVQAakJKnKlH+/PcOfMoFwIG/o4rElqLv/ycAFlx8ZlXUorCg==}
|
||||||
engines: {node: '>=18.12.0'}
|
engines: {node: '>=18.12.0'}
|
||||||
|
|
||||||
websocket@1.0.35:
|
|
||||||
resolution: {integrity: sha512-/REy6amwPZl44DDzvRCkaI1q1bIiQB0mEFQLUrhz3z2EK91cp3n72rAjUlrTP0zV22HJIUOVHQGPxhFRjxjt+Q==}
|
|
||||||
engines: {node: '>=4.0.0'}
|
|
||||||
|
|
||||||
which@2.0.2:
|
which@2.0.2:
|
||||||
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
||||||
engines: {node: '>= 8'}
|
engines: {node: '>= 8'}
|
||||||
@@ -2027,11 +1916,6 @@ packages:
|
|||||||
xbits@0.2.0:
|
xbits@0.2.0:
|
||||||
resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
|
resolution: {integrity: sha512-JMd+tT2WwmbQZxIE9lQ3WoziWgTngKwdMbuk1CBqjos2zn9y5LYYSGRkYqzsFlwITHJehpdHgDdTOf4Qls/Q+w==}
|
||||||
|
|
||||||
yaeti@0.0.6:
|
|
||||||
resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
|
|
||||||
engines: {node: '>=0.10.32'}
|
|
||||||
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
|
|
||||||
|
|
||||||
yallist@4.0.0:
|
yallist@4.0.0:
|
||||||
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
|
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
|
||||||
|
|
||||||
@@ -2062,8 +1946,6 @@ snapshots:
|
|||||||
hashery: 1.5.1
|
hashery: 1.5.1
|
||||||
keyv: 5.6.0
|
keyv: 5.6.0
|
||||||
|
|
||||||
'@cryptography/aes@0.1.1': {}
|
|
||||||
|
|
||||||
'@emnapi/core@1.10.0':
|
'@emnapi/core@1.10.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@emnapi/wasi-threads': 1.2.1
|
'@emnapi/wasi-threads': 1.2.1
|
||||||
@@ -2169,11 +2051,11 @@ snapshots:
|
|||||||
'@remusao/guess-url-type': 2.1.0
|
'@remusao/guess-url-type': 2.1.0
|
||||||
'@remusao/small': 2.1.0
|
'@remusao/small': 2.1.0
|
||||||
'@remusao/smaz': 2.2.0
|
'@remusao/smaz': 2.2.0
|
||||||
tldts-experimental: 7.4.11
|
tldts-experimental: 7.4.12
|
||||||
|
|
||||||
'@ghostery/url-parser@1.3.1':
|
'@ghostery/url-parser@1.3.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
tldts-experimental: 7.4.11
|
tldts-experimental: 7.4.12
|
||||||
|
|
||||||
'@henrygd/queue@1.2.0': {}
|
'@henrygd/queue@1.2.0': {}
|
||||||
|
|
||||||
@@ -2192,7 +2074,7 @@ snapshots:
|
|||||||
|
|
||||||
'@jest/pattern@30.5.0':
|
'@jest/pattern@30.5.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
jest-regex-util: 30.5.0
|
jest-regex-util: 30.5.0
|
||||||
|
|
||||||
'@jest/schemas@30.5.0':
|
'@jest/schemas@30.5.0':
|
||||||
@@ -2205,7 +2087,7 @@ snapshots:
|
|||||||
'@jest/schemas': 30.5.0
|
'@jest/schemas': 30.5.0
|
||||||
'@types/istanbul-lib-coverage': 2.0.6
|
'@types/istanbul-lib-coverage': 2.0.6
|
||||||
'@types/istanbul-reports': 3.0.4
|
'@types/istanbul-reports': 3.0.4
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
'@types/yargs': 17.0.35
|
'@types/yargs': 17.0.35
|
||||||
chalk: 4.1.2
|
chalk: 4.1.2
|
||||||
|
|
||||||
@@ -2545,12 +2427,12 @@ snapshots:
|
|||||||
|
|
||||||
'@types/cacache@20.0.1':
|
'@types/cacache@20.0.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
minipass: 7.1.3
|
minipass: 7.1.3
|
||||||
|
|
||||||
'@types/cli-progress@3.11.6':
|
'@types/cli-progress@3.11.6':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
|
|
||||||
'@types/esrecurse@4.3.1': {}
|
'@types/esrecurse@4.3.1': {}
|
||||||
|
|
||||||
@@ -2570,18 +2452,18 @@ snapshots:
|
|||||||
|
|
||||||
'@types/mocha@10.0.10': {}
|
'@types/mocha@10.0.10': {}
|
||||||
|
|
||||||
'@types/node@26.4.1':
|
'@types/node@26.5.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
undici-types: 8.3.0
|
undici-types: 8.9.0
|
||||||
|
|
||||||
'@types/tar-fs@2.0.4':
|
'@types/tar-fs@2.0.4':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
'@types/tar-stream': 3.1.4
|
'@types/tar-stream': 3.1.4
|
||||||
|
|
||||||
'@types/tar-stream@3.1.4':
|
'@types/tar-stream@3.1.4':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
|
|
||||||
'@types/yargs-parser@21.0.3': {}
|
'@types/yargs-parser@21.0.3': {}
|
||||||
|
|
||||||
@@ -2591,7 +2473,7 @@ snapshots:
|
|||||||
|
|
||||||
'@types/yauzl-promise@4.0.1':
|
'@types/yauzl-promise@4.0.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
|
|
||||||
'@typescript-eslint/eslint-plugin@8.66.0(@typescript-eslint/parser@8.66.0(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)':
|
'@typescript-eslint/eslint-plugin@8.66.0(@typescript-eslint/parser@8.66.0(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2766,10 +2648,6 @@ snapshots:
|
|||||||
|
|
||||||
argparse@2.0.1: {}
|
argparse@2.0.1: {}
|
||||||
|
|
||||||
async-mutex@0.3.2:
|
|
||||||
dependencies:
|
|
||||||
tslib: 2.8.1
|
|
||||||
|
|
||||||
b4a@1.6.7: {}
|
b4a@1.6.7: {}
|
||||||
|
|
||||||
balanced-match@4.0.4: {}
|
balanced-match@4.0.4: {}
|
||||||
@@ -2799,8 +2677,6 @@ snapshots:
|
|||||||
bare-events: 2.6.1
|
bare-events: 2.6.1
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
base64-js@1.5.1: {}
|
|
||||||
|
|
||||||
better-sqlite3@13.0.3:
|
better-sqlite3@13.0.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
node-addon-api: 8.9.2
|
node-addon-api: 8.9.2
|
||||||
@@ -2815,15 +2691,6 @@ snapshots:
|
|||||||
|
|
||||||
buffer-from@1.1.2: {}
|
buffer-from@1.1.2: {}
|
||||||
|
|
||||||
buffer@6.0.3:
|
|
||||||
dependencies:
|
|
||||||
base64-js: 1.5.1
|
|
||||||
ieee754: 1.2.1
|
|
||||||
|
|
||||||
bufferutil@4.0.9:
|
|
||||||
dependencies:
|
|
||||||
node-gyp-build: 4.8.4
|
|
||||||
|
|
||||||
cacache@21.0.1:
|
cacache@21.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@npmcli/fs': 6.0.0
|
'@npmcli/fs': 6.0.0
|
||||||
@@ -2878,17 +2745,6 @@ snapshots:
|
|||||||
|
|
||||||
csv-parse@7.0.2: {}
|
csv-parse@7.0.2: {}
|
||||||
|
|
||||||
d@1.0.2:
|
|
||||||
dependencies:
|
|
||||||
es5-ext: 0.10.64
|
|
||||||
type: 2.7.3
|
|
||||||
|
|
||||||
debug@2.6.9(supports-color@8.1.1):
|
|
||||||
dependencies:
|
|
||||||
ms: 2.0.0
|
|
||||||
optionalDependencies:
|
|
||||||
supports-color: 8.1.1
|
|
||||||
|
|
||||||
debug@4.4.3(supports-color@8.1.1):
|
debug@4.4.3(supports-color@8.1.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
ms: 2.1.3
|
ms: 2.1.3
|
||||||
@@ -2903,32 +2759,14 @@ snapshots:
|
|||||||
|
|
||||||
diff@9.0.0: {}
|
diff@9.0.0: {}
|
||||||
|
|
||||||
dom-serializer@1.4.1:
|
|
||||||
dependencies:
|
|
||||||
domelementtype: 2.3.0
|
|
||||||
domhandler: 4.3.1
|
|
||||||
entities: 2.2.0
|
|
||||||
|
|
||||||
domain-alive@0.1.25(supports-color@8.1.1):
|
domain-alive@0.1.25(supports-color@8.1.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 4.4.3(supports-color@8.1.1)
|
debug: 4.4.3(supports-color@8.1.1)
|
||||||
foxts: 5.9.1
|
foxts: 5.9.1
|
||||||
tldts: 7.4.11
|
tldts: 7.4.12
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
domelementtype@2.3.0: {}
|
|
||||||
|
|
||||||
domhandler@4.3.1:
|
|
||||||
dependencies:
|
|
||||||
domelementtype: 2.3.0
|
|
||||||
|
|
||||||
domutils@2.8.0:
|
|
||||||
dependencies:
|
|
||||||
dom-serializer: 1.4.1
|
|
||||||
domelementtype: 2.3.0
|
|
||||||
domhandler: 4.3.1
|
|
||||||
|
|
||||||
earl@2.0.0:
|
earl@2.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
error-stack-parser: 2.1.4
|
error-stack-parser: 2.1.4
|
||||||
@@ -2944,30 +2782,10 @@ snapshots:
|
|||||||
graceful-fs: 4.2.11
|
graceful-fs: 4.2.11
|
||||||
tapable: 2.3.3
|
tapable: 2.3.3
|
||||||
|
|
||||||
entities@2.2.0: {}
|
|
||||||
|
|
||||||
error-stack-parser@2.1.4:
|
error-stack-parser@2.1.4:
|
||||||
dependencies:
|
dependencies:
|
||||||
stackframe: 1.3.4
|
stackframe: 1.3.4
|
||||||
|
|
||||||
es5-ext@0.10.64:
|
|
||||||
dependencies:
|
|
||||||
es6-iterator: 2.0.3
|
|
||||||
es6-symbol: 3.1.4
|
|
||||||
esniff: 2.0.1
|
|
||||||
next-tick: 1.1.0
|
|
||||||
|
|
||||||
es6-iterator@2.0.3:
|
|
||||||
dependencies:
|
|
||||||
d: 1.0.2
|
|
||||||
es5-ext: 0.10.64
|
|
||||||
es6-symbol: 3.1.4
|
|
||||||
|
|
||||||
es6-symbol@3.1.4:
|
|
||||||
dependencies:
|
|
||||||
d: 1.0.2
|
|
||||||
ext: 1.7.0
|
|
||||||
|
|
||||||
escape-string-regexp@4.0.0: {}
|
escape-string-regexp@4.0.0: {}
|
||||||
|
|
||||||
eslint-compat-utils@0.5.1(eslint@10.10.0(supports-color@8.1.1)):
|
eslint-compat-utils@0.5.1(eslint@10.10.0(supports-color@8.1.1)):
|
||||||
@@ -3184,13 +3002,6 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
esniff@2.0.1:
|
|
||||||
dependencies:
|
|
||||||
d: 1.0.2
|
|
||||||
es5-ext: 0.10.64
|
|
||||||
event-emitter: 0.3.5
|
|
||||||
type: 2.7.3
|
|
||||||
|
|
||||||
espree@11.2.0:
|
espree@11.2.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.16.0
|
acorn: 8.16.0
|
||||||
@@ -3209,15 +3020,6 @@ snapshots:
|
|||||||
|
|
||||||
esutils@2.0.3: {}
|
esutils@2.0.3: {}
|
||||||
|
|
||||||
event-emitter@0.3.5:
|
|
||||||
dependencies:
|
|
||||||
d: 1.0.2
|
|
||||||
es5-ext: 0.10.64
|
|
||||||
|
|
||||||
ext@1.7.0:
|
|
||||||
dependencies:
|
|
||||||
type: 2.7.3
|
|
||||||
|
|
||||||
fast-cidr-tools@0.3.4:
|
fast-cidr-tools@0.3.4:
|
||||||
dependencies:
|
dependencies:
|
||||||
foxts: 4.6.0
|
foxts: 4.6.0
|
||||||
@@ -3311,15 +3113,6 @@ snapshots:
|
|||||||
|
|
||||||
hookified@2.2.0: {}
|
hookified@2.2.0: {}
|
||||||
|
|
||||||
htmlparser2@6.1.0:
|
|
||||||
dependencies:
|
|
||||||
domelementtype: 2.3.0
|
|
||||||
domhandler: 4.3.1
|
|
||||||
domutils: 2.8.0
|
|
||||||
entities: 2.2.0
|
|
||||||
|
|
||||||
ieee754@1.2.1: {}
|
|
||||||
|
|
||||||
ignore@5.3.2: {}
|
ignore@5.3.2: {}
|
||||||
|
|
||||||
ignore@7.0.5: {}
|
ignore@7.0.5: {}
|
||||||
@@ -3346,8 +3139,6 @@ snapshots:
|
|||||||
|
|
||||||
is-path-inside@3.0.3: {}
|
is-path-inside@3.0.3: {}
|
||||||
|
|
||||||
is-typedarray@1.0.0: {}
|
|
||||||
|
|
||||||
is-unicode-supported@0.1.0: {}
|
is-unicode-supported@0.1.0: {}
|
||||||
|
|
||||||
isexe@2.0.0: {}
|
isexe@2.0.0: {}
|
||||||
@@ -3357,7 +3148,7 @@ snapshots:
|
|||||||
jest-util@30.5.1:
|
jest-util@30.5.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jest/types': 30.5.1
|
'@jest/types': 30.5.1
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
chalk: 4.1.2
|
chalk: 4.1.2
|
||||||
ci-info: 4.4.0
|
ci-info: 4.4.0
|
||||||
graceful-fs: 4.2.11
|
graceful-fs: 4.2.11
|
||||||
@@ -3365,7 +3156,7 @@ snapshots:
|
|||||||
|
|
||||||
jest-worker@30.5.1:
|
jest-worker@30.5.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/node': 26.4.1
|
'@types/node': 26.5.1
|
||||||
'@ungap/structured-clone': 1.3.0
|
'@ungap/structured-clone': 1.3.0
|
||||||
jest-util: 30.5.1
|
jest-util: 30.5.1
|
||||||
merge-stream: 2.0.0
|
merge-stream: 2.0.0
|
||||||
@@ -3449,20 +3240,14 @@ snapshots:
|
|||||||
supports-color: 8.1.1
|
supports-color: 8.1.1
|
||||||
workerpool: 10.0.3
|
workerpool: 10.0.3
|
||||||
|
|
||||||
ms@2.0.0: {}
|
|
||||||
|
|
||||||
ms@2.1.3: {}
|
ms@2.1.3: {}
|
||||||
|
|
||||||
napi-postinstall@0.3.4: {}
|
napi-postinstall@0.3.4: {}
|
||||||
|
|
||||||
natural-compare@1.4.0: {}
|
natural-compare@1.4.0: {}
|
||||||
|
|
||||||
next-tick@1.1.0: {}
|
|
||||||
|
|
||||||
node-addon-api@8.9.2: {}
|
node-addon-api@8.9.2: {}
|
||||||
|
|
||||||
node-gyp-build@4.8.4: {}
|
|
||||||
|
|
||||||
node-localstorage@2.2.1:
|
node-localstorage@2.2.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
write-file-atomic: 1.3.4
|
write-file-atomic: 1.3.4
|
||||||
@@ -3514,10 +3299,6 @@ snapshots:
|
|||||||
|
|
||||||
p-map@7.0.7: {}
|
p-map@7.0.7: {}
|
||||||
|
|
||||||
pako@2.1.0: {}
|
|
||||||
|
|
||||||
path-browserify@1.0.1: {}
|
|
||||||
|
|
||||||
path-exists@4.0.0: {}
|
path-exists@4.0.0: {}
|
||||||
|
|
||||||
path-key@3.1.1: {}
|
path-key@3.1.1: {}
|
||||||
@@ -3548,8 +3329,6 @@ snapshots:
|
|||||||
|
|
||||||
readdirp@5.1.1: {}
|
readdirp@5.1.1: {}
|
||||||
|
|
||||||
real-cancellable-promise@1.2.3: {}
|
|
||||||
|
|
||||||
refa@0.12.1:
|
refa@0.12.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/regexpp': 4.12.2
|
'@eslint-community/regexpp': 4.12.2
|
||||||
@@ -3656,27 +3435,13 @@ snapshots:
|
|||||||
fast-fifo: 1.3.2
|
fast-fifo: 1.3.2
|
||||||
streamx: 2.22.1
|
streamx: 2.22.1
|
||||||
|
|
||||||
telegram@2.26.22(supports-color@8.1.1):
|
teleproto@1.229.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@cryptography/aes': 0.1.1
|
|
||||||
async-mutex: 0.3.2
|
|
||||||
big-integer: 1.6.52
|
big-integer: 1.6.52
|
||||||
buffer: 6.0.3
|
|
||||||
htmlparser2: 6.1.0
|
|
||||||
mime: 3.0.0
|
mime: 3.0.0
|
||||||
node-localstorage: 2.2.1
|
node-localstorage: 2.2.1
|
||||||
pako: 2.1.0
|
|
||||||
path-browserify: 1.0.1
|
|
||||||
real-cancellable-promise: 1.2.3
|
|
||||||
socks: 2.8.7
|
socks: 2.8.7
|
||||||
store2: 2.14.4
|
store2: 2.14.4
|
||||||
ts-custom-error: 3.3.1
|
|
||||||
websocket: 1.0.35(supports-color@8.1.1)
|
|
||||||
optionalDependencies:
|
|
||||||
bufferutil: 4.0.9
|
|
||||||
utf-8-validate: 5.0.10
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
|
|
||||||
text-decoder@1.2.3:
|
text-decoder@1.2.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -3687,22 +3452,20 @@ snapshots:
|
|||||||
fdir: 6.5.0(picomatch@4.0.4)
|
fdir: 6.5.0(picomatch@4.0.4)
|
||||||
picomatch: 4.0.4
|
picomatch: 4.0.4
|
||||||
|
|
||||||
tldts-core@7.4.11: {}
|
tldts-core@7.4.12: {}
|
||||||
|
|
||||||
tldts-experimental@7.4.11:
|
tldts-experimental@7.4.12:
|
||||||
dependencies:
|
dependencies:
|
||||||
tldts-core: 7.4.11
|
tldts-core: 7.4.12
|
||||||
|
|
||||||
tldts@7.4.11:
|
tldts@7.4.12:
|
||||||
dependencies:
|
dependencies:
|
||||||
tldts-core: 7.4.11
|
tldts-core: 7.4.12
|
||||||
|
|
||||||
ts-api-utils@2.5.0(typescript@6.0.3):
|
ts-api-utils@2.5.0(typescript@6.0.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
|
|
||||||
ts-custom-error@3.3.1: {}
|
|
||||||
|
|
||||||
ts-declaration-location@1.0.7(typescript@6.0.3):
|
ts-declaration-location@1.0.7(typescript@6.0.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
picomatch: 4.0.4
|
picomatch: 4.0.4
|
||||||
@@ -3714,12 +3477,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
prelude-ls: 1.2.1
|
prelude-ls: 1.2.1
|
||||||
|
|
||||||
type@2.7.3: {}
|
|
||||||
|
|
||||||
typedarray-to-buffer@3.1.5:
|
|
||||||
dependencies:
|
|
||||||
is-typedarray: 1.0.0
|
|
||||||
|
|
||||||
typescript-eslint@8.66.0(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3):
|
typescript-eslint@8.66.0(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/eslint-plugin': 8.66.0(@typescript-eslint/parser@8.66.0(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
|
'@typescript-eslint/eslint-plugin': 8.66.0(@typescript-eslint/parser@8.66.0(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.10.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)
|
||||||
@@ -3739,7 +3496,7 @@ snapshots:
|
|||||||
foxts: 5.9.1
|
foxts: 5.9.1
|
||||||
undici: 8.10.2
|
undici: 8.10.2
|
||||||
|
|
||||||
undici-types@8.3.0: {}
|
undici-types@8.9.0: {}
|
||||||
|
|
||||||
undici@8.10.2: {}
|
undici@8.10.2: {}
|
||||||
|
|
||||||
@@ -3771,23 +3528,8 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
punycode: 2.3.1
|
punycode: 2.3.1
|
||||||
|
|
||||||
utf-8-validate@5.0.10:
|
|
||||||
dependencies:
|
|
||||||
node-gyp-build: 4.8.4
|
|
||||||
|
|
||||||
verkit@0.3.2: {}
|
verkit@0.3.2: {}
|
||||||
|
|
||||||
websocket@1.0.35(supports-color@8.1.1):
|
|
||||||
dependencies:
|
|
||||||
bufferutil: 4.0.9
|
|
||||||
debug: 2.6.9(supports-color@8.1.1)
|
|
||||||
es5-ext: 0.10.64
|
|
||||||
typedarray-to-buffer: 3.1.5
|
|
||||||
utf-8-validate: 5.0.10
|
|
||||||
yaeti: 0.0.6
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
|
|
||||||
which@2.0.2:
|
which@2.0.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
isexe: 2.0.0
|
isexe: 2.0.0
|
||||||
@@ -3808,8 +3550,6 @@ snapshots:
|
|||||||
|
|
||||||
xbits@0.2.0: {}
|
xbits@0.2.0: {}
|
||||||
|
|
||||||
yaeti@0.0.6: {}
|
|
||||||
|
|
||||||
yallist@4.0.0: {}
|
yallist@4.0.0: {}
|
||||||
|
|
||||||
yaml@2.9.0: {}
|
yaml@2.9.0: {}
|
||||||
|
|||||||
Reference in New Issue
Block a user