mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-13 09:40:34 +08:00
Fix AdGuardHome keyword regex
This commit is contained in:
parent
7f9f34974c
commit
8b179d2454
@ -48,7 +48,7 @@ export class AdGuardHome extends BaseWriteStrategy {
|
||||
writeDomainKeywords(keywords: Set<string>): void {
|
||||
for (const keyword of keywords) {
|
||||
// Use regex to match keyword
|
||||
this.result.push(`/${escapeStringRegexp(keyword)}/`);
|
||||
this.result.push(`/${escapeStringRegexp(keyword, false)}/`);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
12
package.json
12
package.json
@ -32,13 +32,13 @@
|
||||
"fast-cidr-tools": "^0.3.2",
|
||||
"fast-fifo": "^1.3.2",
|
||||
"fdir": "^6.4.6",
|
||||
"foxts": "^3.4.0",
|
||||
"foxts": "^3.5.0",
|
||||
"hash-wasm": "^4.12.0",
|
||||
"json-stringify-pretty-compact": "3.0.0",
|
||||
"null-prototype-object": "^1.2.0",
|
||||
"picocolors": "^1.1.1",
|
||||
"punycode": "^2.3.1",
|
||||
"tar-fs": "^3.0.9",
|
||||
"tar-fs": "^3.0.10",
|
||||
"tldts": "^6.1.86",
|
||||
"tldts-experimental": "^6.1.86",
|
||||
"undici": "^7.10.0",
|
||||
@ -53,23 +53,23 @@
|
||||
"devDependencies": {
|
||||
"@eslint-sukka/node": "^6.22.1",
|
||||
"@swc-node/register": "^1.10.10",
|
||||
"@swc/core": "^1.12.1",
|
||||
"@swc/core": "^1.12.4",
|
||||
"@types/async-retry": "^1.4.9",
|
||||
"@types/better-sqlite3": "^7.6.13",
|
||||
"@types/cli-progress": "^3.11.6",
|
||||
"@types/dns2": "^2.0.9",
|
||||
"@types/fast-fifo": "^1.3.0",
|
||||
"@types/mocha": "^10.0.10",
|
||||
"@types/node": "^24.0.1",
|
||||
"@types/node": "^24.0.3",
|
||||
"@types/punycode": "^2.1.4",
|
||||
"@types/tar-fs": "^2.0.4",
|
||||
"@types/yauzl-promise": "^4.0.1",
|
||||
"eslint": "^9.29.0",
|
||||
"eslint-config-sukka": "^6.22.1",
|
||||
"eslint-formatter-sukka": "^6.22.1",
|
||||
"expect": "^30.0.0",
|
||||
"expect": "^30.0.2",
|
||||
"mitata": "^1.0.34",
|
||||
"mocha": "^11.6.0",
|
||||
"mocha": "^11.7.0",
|
||||
"tinyexec": "^1.0.1",
|
||||
"typescript": "^5.8.3"
|
||||
},
|
||||
|
||||
300
pnpm-lock.yaml
generated
300
pnpm-lock.yaml
generated
@ -53,8 +53,8 @@ importers:
|
||||
specifier: ^6.4.6
|
||||
version: 6.4.6(picomatch@4.0.2)
|
||||
foxts:
|
||||
specifier: ^3.4.0
|
||||
version: 3.4.0
|
||||
specifier: ^3.5.0
|
||||
version: 3.5.0
|
||||
hash-wasm:
|
||||
specifier: ^4.12.0
|
||||
version: 4.12.0
|
||||
@ -71,8 +71,8 @@ importers:
|
||||
specifier: ^2.3.1
|
||||
version: 2.3.1
|
||||
tar-fs:
|
||||
specifier: ^3.0.9
|
||||
version: 3.0.9
|
||||
specifier: ^3.0.10
|
||||
version: 3.0.10
|
||||
tldts:
|
||||
specifier: ^6.1.86
|
||||
version: 6.1.86
|
||||
@ -109,10 +109,10 @@ importers:
|
||||
version: 6.22.1(eslint@9.29.0)(typescript@5.8.3)
|
||||
'@swc-node/register':
|
||||
specifier: ^1.10.10
|
||||
version: 1.10.10(@swc/core@1.12.1)(@swc/types@0.1.23)(typescript@5.8.3)
|
||||
version: 1.10.10(@swc/core@1.12.4)(@swc/types@0.1.23)(typescript@5.8.3)
|
||||
'@swc/core':
|
||||
specifier: ^1.12.1
|
||||
version: 1.12.1
|
||||
specifier: ^1.12.4
|
||||
version: 1.12.4
|
||||
'@types/async-retry':
|
||||
specifier: ^1.4.9
|
||||
version: 1.4.9
|
||||
@ -132,8 +132,8 @@ importers:
|
||||
specifier: ^10.0.10
|
||||
version: 10.0.10
|
||||
'@types/node':
|
||||
specifier: ^24.0.1
|
||||
version: 24.0.1
|
||||
specifier: ^24.0.3
|
||||
version: 24.0.3
|
||||
'@types/punycode':
|
||||
specifier: ^2.1.4
|
||||
version: 2.1.4
|
||||
@ -153,14 +153,14 @@ importers:
|
||||
specifier: ^6.22.1
|
||||
version: 6.22.1
|
||||
expect:
|
||||
specifier: ^30.0.0
|
||||
version: 30.0.0
|
||||
specifier: ^30.0.2
|
||||
version: 30.0.2
|
||||
mitata:
|
||||
specifier: ^1.0.34
|
||||
version: 1.0.34
|
||||
mocha:
|
||||
specifier: ^11.6.0
|
||||
version: 11.6.0
|
||||
specifier: ^11.7.0
|
||||
version: 11.7.0
|
||||
tinyexec:
|
||||
specifier: ^1.0.1
|
||||
version: 1.0.1
|
||||
@ -287,28 +287,28 @@ packages:
|
||||
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
||||
engines: {node: '>=12'}
|
||||
|
||||
'@jest/diff-sequences@30.0.0':
|
||||
resolution: {integrity: sha512-xMbtoCeKJDto86GW6AiwVv7M4QAuI56R7dVBr1RNGYbOT44M2TIzOiske2RxopBqkumDY+A1H55pGvuribRY9A==}
|
||||
'@jest/diff-sequences@30.0.1':
|
||||
resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
'@jest/expect-utils@30.0.0':
|
||||
resolution: {integrity: sha512-UiWfsqNi/+d7xepfOv8KDcbbzcYtkWBe3a3kVDtg6M1kuN6CJ7b4HzIp5e1YHrSaQaVS8sdCoyCMCZClTLNKFQ==}
|
||||
'@jest/expect-utils@30.0.2':
|
||||
resolution: {integrity: sha512-FHF2YdtFBUQOo0/qdgt+6UdBFcNPF/TkVzcc+4vvf8uaBzUlONytGBeeudufIHHW1khRfM1sBbRT1VCK7n/0dQ==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
'@jest/get-type@30.0.0':
|
||||
resolution: {integrity: sha512-VZWMjrBzqfDKngQ7sUctKeLxanAbsBFoZnPxNIG6CmxK7Gv6K44yqd0nzveNIBfuhGZMmk1n5PGbvdSTOu0yTg==}
|
||||
'@jest/get-type@30.0.1':
|
||||
resolution: {integrity: sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
'@jest/pattern@30.0.0':
|
||||
resolution: {integrity: sha512-k+TpEThzLVXMkbdxf8KHjZ83Wl+G54ytVJoDIGWwS96Ql4xyASRjc6SU1hs5jHVql+hpyK9G8N7WuFhLpGHRpQ==}
|
||||
'@jest/pattern@30.0.1':
|
||||
resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
'@jest/schemas@30.0.0':
|
||||
resolution: {integrity: sha512-NID2VRyaEkevCRz6badhfqYwri/RvMbiHY81rk3AkK/LaiB0LSxi1RdVZ7MpZdTjNugtZeGfpL0mLs9Kp3MrQw==}
|
||||
'@jest/schemas@30.0.1':
|
||||
resolution: {integrity: sha512-+g/1TKjFuGrf1Hh0QPCv0gISwBxJ+MQSNXmG9zjHy7BmFhtoJ9fdNhWJp3qUKRi93AOZHXtdxZgJ1vAtz6z65w==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
'@jest/types@30.0.0':
|
||||
resolution: {integrity: sha512-1Nox8mAL52PKPfEnUQWBvKU/bp8FTT6AiDu76bFDEJj/qsRFSAVSldfCH3XYMqialti2zHXKvD5gN0AaHc0yKA==}
|
||||
'@jest/types@30.0.1':
|
||||
resolution: {integrity: sha512-HGwoYRVF0QSKJu1ZQX0o5ZrUrrhj0aOOFA8hXrumD7SIzjouevhawbTjmXdwOmURdGluU9DM/XvGm3NyFoiQjw==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
'@mitata/counters@0.0.8':
|
||||
@ -515,68 +515,68 @@ packages:
|
||||
'@swc-node/sourcemap-support@0.5.1':
|
||||
resolution: {integrity: sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==}
|
||||
|
||||
'@swc/core-darwin-arm64@1.12.1':
|
||||
resolution: {integrity: sha512-nUjWVcJ3YS2N40ZbKwYO2RJ4+o2tWYRzNOcIQp05FqW0+aoUCVMdAUUzQinPDynfgwVshDAXCKemY8X7nN5MaA==}
|
||||
'@swc/core-darwin-arm64@1.12.4':
|
||||
resolution: {integrity: sha512-HihKfeitjZU2ab94Zf893sxzFryLKX0TweGsNXXOLNtkSMLw50auuYfpRM0BOL9/uXXtuCWgRIF6P030SAX5xQ==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
|
||||
'@swc/core-darwin-x64@1.12.1':
|
||||
resolution: {integrity: sha512-OGm4a4d3OeJn+tRt8H/eiHgTFrJbS6r8mi/Ob65tAEXZGHN900T2kR7c5ALr0V2hBOQ8BfhexwPoQlGQP/B95w==}
|
||||
'@swc/core-darwin-x64@1.12.4':
|
||||
resolution: {integrity: sha512-meYCXHyYb6RDdu2N5PNAf0EelyxPBFhRcVo4kBFLuvuNb0m6EUg///VWy8MUMXq9/s9uzGS9kJVXXdRdr/d6FA==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
|
||||
'@swc/core-linux-arm-gnueabihf@1.12.1':
|
||||
resolution: {integrity: sha512-76YeeQKyK0EtNkQiNBZ0nbVGooPf9IucY0WqVXVpaU4wuG7ZyLEE2ZAIgXafIuzODGQoLfetue7I8boMxh1/MA==}
|
||||
'@swc/core-linux-arm-gnueabihf@1.12.4':
|
||||
resolution: {integrity: sha512-szfDbf7mE8V64of0q/LSqbk+em+T+TD3uqnH40Z7Qu/aL8vi5CHgyLjWG2SLkLLpyjgkAUF6AKrupgnBYcC2NA==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
|
||||
'@swc/core-linux-arm64-gnu@1.12.1':
|
||||
resolution: {integrity: sha512-BxJDIJPq1+aCh9UsaSAN6wo3tuln8UhNXruOrzTI8/ElIig/3sAueDM6Eq7GvZSGGSA7ljhNATMJ0elD7lFatQ==}
|
||||
'@swc/core-linux-arm64-gnu@1.12.4':
|
||||
resolution: {integrity: sha512-n0IY76w+Scx8m3HIVRvLkoResuwsQgjDfAk9bxn99dq4leQO+mE0fkPl0Yw/1BIsPh+kxGfopIJH9zsZ1Z2YrA==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
|
||||
'@swc/core-linux-arm64-musl@1.12.1':
|
||||
resolution: {integrity: sha512-NhLdbffSXvY0/FwUSAl4hKBlpe5GHQGXK8DxTo3HHjLsD9sCPYieo3vG0NQoUYAy4ZUY1WeGjyxeq4qZddJzEQ==}
|
||||
'@swc/core-linux-arm64-musl@1.12.4':
|
||||
resolution: {integrity: sha512-wE5jmFi5cEQyLy8WmCWmNwfKETrnzy2D8YNi/xpYWpLPWqPhcelpa6tswkfYlbsMmmOh7hQNoTba1QdGu0jvHQ==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
|
||||
'@swc/core-linux-x64-gnu@1.12.1':
|
||||
resolution: {integrity: sha512-CrYnV8SZIgArQ9LKH0xEF95PKXzX9WkRSc5j55arOSBeDCeDUQk1Bg/iKdnDiuj5HC1hZpvzwMzSBJjv+Z70jA==}
|
||||
'@swc/core-linux-x64-gnu@1.12.4':
|
||||
resolution: {integrity: sha512-6S50Xd/7ePjEwrXyHMxpKTZ+KBrgUwMA8hQPbArUOwH4S5vHBr51heL0iXbUkppn1bkSr0J0IbOove5hzn+iqQ==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
|
||||
'@swc/core-linux-x64-musl@1.12.1':
|
||||
resolution: {integrity: sha512-BQMl3d0HaGB0/h2xcKlGtjk/cGRn2tnbsaChAKcjFdCepblKBCz1pgO/mL7w5iXq3s57wMDUn++71/a5RAkZOA==}
|
||||
'@swc/core-linux-x64-musl@1.12.4':
|
||||
resolution: {integrity: sha512-hbYRyaHhC13vYKuGG5BrAG5fjjWEQFfQetuFp/4QKEoXDzdnabJoixxWTQACDL3m0JW32nJ+gUzsYIPtFYkwXg==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
|
||||
'@swc/core-win32-arm64-msvc@1.12.1':
|
||||
resolution: {integrity: sha512-b7NeGnpqTfmIGtUqXBl0KqoSmOnH64nRZoT5l4BAGdvwY7nxitWR94CqZuwyLPty/bLywmyDA9uO12Kvgb3+gg==}
|
||||
'@swc/core-win32-arm64-msvc@1.12.4':
|
||||
resolution: {integrity: sha512-e6EbfjPL8GA/bb1lc9Omtxjlz+1ThTsAuBsy4Q3Kpbuh6B3jclg8KzxU/6t91v23wG593mieTyR5f3Pr7X3AWw==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
|
||||
'@swc/core-win32-ia32-msvc@1.12.1':
|
||||
resolution: {integrity: sha512-iU/29X2D7cHBp1to62cUg/5Xk8K+lyOJiKIGGW5rdzTW/c2zz3d/ehgpzVP/rqC4NVr88MXspqHU4il5gmDajw==}
|
||||
'@swc/core-win32-ia32-msvc@1.12.4':
|
||||
resolution: {integrity: sha512-RG2FzmllBTUf4EksANlIvLckcBrLZEA0t13LIa6L213UZKQfEuDNHezqESgoVhJMg2S/tWauitATOCFgZNSmjg==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [ia32]
|
||||
os: [win32]
|
||||
|
||||
'@swc/core-win32-x64-msvc@1.12.1':
|
||||
resolution: {integrity: sha512-+Zh+JKDwiFqV5N9yAd2DhYVGPORGh9cfenu1ptr9yge+eHAf7vZJcC3rnj6QMR1QJh0Y5VC9+YBjRFjZVA7XDw==}
|
||||
'@swc/core-win32-x64-msvc@1.12.4':
|
||||
resolution: {integrity: sha512-oRHKnZlR83zaMeVUCmHENa4j5uNRAWbmEpjYbzRcfC45LPFNWKGWGAGERLx0u87XMUtTGqnVYxnBTHN/rzDHOw==}
|
||||
engines: {node: '>=10'}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
|
||||
'@swc/core@1.12.1':
|
||||
resolution: {integrity: sha512-aKXdDTqxTVFl/bKQZ3EQUjEMBEoF6JBv29moMZq0kbVO43na6u/u+3Vcbhbrh+A2N0X5OL4RaveuWfAjEgOmeA==}
|
||||
'@swc/core@1.12.4':
|
||||
resolution: {integrity: sha512-hn30ebV4njAn0NAUM+3a0qCF+MJgqTNSrfA/hUAbC6TVjOQy2OYGQwkUvCu/V7S2+rZxrUsTpKOnZ7qqECZV9Q==}
|
||||
engines: {node: '>=10'}
|
||||
peerDependencies:
|
||||
'@swc/helpers': '>=0.5.17'
|
||||
@ -626,8 +626,8 @@ packages:
|
||||
'@types/mocha@10.0.10':
|
||||
resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==}
|
||||
|
||||
'@types/node@24.0.1':
|
||||
resolution: {integrity: sha512-MX4Zioh39chHlDJbKmEgydJDS3tspMP/lnQC67G3SWsTnb9NeYVWOjkxpOSy4oMfPs4StcWHwBrvUb4ybfnuaw==}
|
||||
'@types/node@24.0.3':
|
||||
resolution: {integrity: sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==}
|
||||
|
||||
'@types/punycode@2.1.4':
|
||||
resolution: {integrity: sha512-trzh6NzBnq8yw5e35f8xe8VTYjqM3NE7bohBtvDVf/dtUer3zYTLK1Ka3DG3p7bdtoaOHZucma6FfVKlQ134pQ==}
|
||||
@ -1254,8 +1254,8 @@ packages:
|
||||
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
expect@30.0.0:
|
||||
resolution: {integrity: sha512-xCdPp6gwiR9q9lsPCHANarIkFTN/IMZso6Kkq03sOm9IIGtzK/UJqml0dkhHibGh8HKOj8BIDIpZ0BZuU7QK6w==}
|
||||
expect@30.0.2:
|
||||
resolution: {integrity: sha512-YN9Mgv2mtTWXVmifQq3QT+ixCL/uLuLJw+fdp8MOjKqu8K3XQh3o5aulMM1tn+O2DdrWNxLZTeJsCY/VofUA0A==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
fast-cidr-tools@0.3.2:
|
||||
@ -1322,8 +1322,8 @@ packages:
|
||||
resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
|
||||
engines: {node: '>=14'}
|
||||
|
||||
foxts@3.4.0:
|
||||
resolution: {integrity: sha512-zpI41ZJ/ZjG745XMVJy338CU1WLwkp1AobgGNKvFDEvSz8y7Lv+DTUpAj/BUyXg7TocGDpSwRH6o9XyAvkMO5A==}
|
||||
foxts@3.5.0:
|
||||
resolution: {integrity: sha512-gr1TsgUMJQ/T/zCIamTWg4VwfPrgbX8HMtmWKEzDMn8wiJZzzZZ5TeLjGSUXet49nvU3ZT9/4ZIcs5w53EnmCg==}
|
||||
|
||||
fs-constants@1.0.0:
|
||||
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
|
||||
@ -1463,28 +1463,28 @@ packages:
|
||||
jackspeak@3.4.3:
|
||||
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
|
||||
|
||||
jest-diff@30.0.0:
|
||||
resolution: {integrity: sha512-TgT1+KipV8JTLXXeFX0qSvIJR/UXiNNojjxb/awh3vYlBZyChU/NEmyKmq+wijKjWEztyrGJFL790nqMqNjTHA==}
|
||||
jest-diff@30.0.2:
|
||||
resolution: {integrity: sha512-2UjrNvDJDn/oHFpPrUTVmvYYDNeNtw2DlY3er8bI6vJJb9Fb35ycp/jFLd5RdV59tJ8ekVXX3o/nwPcscgXZJQ==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
jest-matcher-utils@30.0.0:
|
||||
resolution: {integrity: sha512-m5mrunqopkrqwG1mMdJxe1J4uGmS9AHHKYUmoxeQOxBcLjEvirIrIDwuKmUYrecPHVB/PUBpXs2gPoeA2FSSLQ==}
|
||||
jest-matcher-utils@30.0.2:
|
||||
resolution: {integrity: sha512-1FKwgJYECR8IT93KMKmjKHSLyru0DqguThov/aWpFccC0wbiXGOxYEu7SScderBD7ruDOpl7lc5NG6w3oxKfaA==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
jest-message-util@30.0.0:
|
||||
resolution: {integrity: sha512-pV3qcrb4utEsa/U7UI2VayNzSDQcmCllBZLSoIucrESRu0geKThFZOjjh0kACDJFJRAQwsK7GVsmS6SpEceD8w==}
|
||||
jest-message-util@30.0.2:
|
||||
resolution: {integrity: sha512-vXywcxmr0SsKXF/bAD7t7nMamRvPuJkras00gqYeB1V0WllxZrbZ0paRr3XqpFU2sYYjD0qAaG2fRyn/CGZ0aw==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
jest-mock@30.0.0:
|
||||
resolution: {integrity: sha512-W2sRA4ALXILrEetEOh2ooZG6fZ01iwVs0OWMKSSWRcUlaLr4ESHuiKXDNTg+ZVgOq8Ei5445i/Yxrv59VT+XkA==}
|
||||
jest-mock@30.0.2:
|
||||
resolution: {integrity: sha512-PnZOHmqup/9cT/y+pXIVbbi8ID6U1XHRmbvR7MvUy4SLqhCbwpkmXhLbsWbGewHrV5x/1bF7YDjs+x24/QSvFA==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
jest-regex-util@30.0.0:
|
||||
resolution: {integrity: sha512-rT84010qRu/5OOU7a9TeidC2Tp3Qgt9Sty4pOZ/VSDuEmRupIjKZAb53gU3jr4ooMlhwScrgC9UixJxWzVu9oQ==}
|
||||
jest-regex-util@30.0.1:
|
||||
resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
jest-util@30.0.0:
|
||||
resolution: {integrity: sha512-fhNBBM9uSUbd4Lzsf8l/kcAdaHD/4SgoI48en3HXcBEMwKwoleKFMZ6cYEYs21SB779PRuRCyNLmymApAm8tZw==}
|
||||
jest-util@30.0.2:
|
||||
resolution: {integrity: sha512-8IyqfKS4MqprBuUpZNlFB5l+WFehc8bfCe1HSZFHzft2mOuND8Cvi9r1musli+u6F3TqanCZ/Ik4H4pXUolZIg==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
js-tokens@4.0.0:
|
||||
@ -1567,8 +1567,8 @@ packages:
|
||||
mkdirp-classic@0.5.3:
|
||||
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
|
||||
|
||||
mocha@11.6.0:
|
||||
resolution: {integrity: sha512-i0JVb+OUBqw63X/1pC3jCyJsqYisgxySBbsQa8TKvefpA1oEnw7JXxXnftfMHRsw7bEEVGRtVlHcDYXBa7FzVw==}
|
||||
mocha@11.7.0:
|
||||
resolution: {integrity: sha512-bXfLy/mI8n4QICg+pWj1G8VduX5vC0SHRwFpiR5/Fxc8S2G906pSfkyMmHVsdJNQJQNh3LE67koad9GzEvkV6g==}
|
||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||
hasBin: true
|
||||
|
||||
@ -1662,8 +1662,8 @@ packages:
|
||||
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
||||
engines: {node: '>= 0.8.0'}
|
||||
|
||||
pretty-format@30.0.0:
|
||||
resolution: {integrity: sha512-18NAOUr4ZOQiIR+BgI5NhQE7uREdx4ZyV0dyay5izh4yfQ+1T7BSvggxvRGoXocrRyevqW5OhScUjbi9GB8R8Q==}
|
||||
pretty-format@30.0.2:
|
||||
resolution: {integrity: sha512-yC5/EBSOrTtqhCKfLHqoUIAXVRZnukHPwWBJWR7h84Q3Be1DRQZLncwcfLoPA5RPQ65qfiCMqgYwdUuQ//eVpg==}
|
||||
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
|
||||
|
||||
promise-make-naked@2.1.2:
|
||||
@ -1851,8 +1851,8 @@ packages:
|
||||
tar-fs@2.1.2:
|
||||
resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==}
|
||||
|
||||
tar-fs@3.0.9:
|
||||
resolution: {integrity: sha512-XF4w9Xp+ZQgifKakjZYmFdkLoSWd34VGKcsTCwlNWM7QG3ZbaxnTsaBwnjFZqHRf/rROxaR8rXnbtwdvaDI+lA==}
|
||||
tar-fs@3.0.10:
|
||||
resolution: {integrity: sha512-C1SwlQGNLe/jPNqapK8epDsXME7CAJR5RL3GcE6KWx1d9OUByzoHVcbu1VPI8tevg9H8Alae0AApHHFGzrD5zA==}
|
||||
|
||||
tar-stream@2.2.0:
|
||||
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
|
||||
@ -2169,30 +2169,30 @@ snapshots:
|
||||
wrap-ansi: 8.1.0
|
||||
wrap-ansi-cjs: wrap-ansi@7.0.0
|
||||
|
||||
'@jest/diff-sequences@30.0.0': {}
|
||||
'@jest/diff-sequences@30.0.1': {}
|
||||
|
||||
'@jest/expect-utils@30.0.0':
|
||||
'@jest/expect-utils@30.0.2':
|
||||
dependencies:
|
||||
'@jest/get-type': 30.0.0
|
||||
'@jest/get-type': 30.0.1
|
||||
|
||||
'@jest/get-type@30.0.0': {}
|
||||
'@jest/get-type@30.0.1': {}
|
||||
|
||||
'@jest/pattern@30.0.0':
|
||||
'@jest/pattern@30.0.1':
|
||||
dependencies:
|
||||
'@types/node': 24.0.1
|
||||
jest-regex-util: 30.0.0
|
||||
'@types/node': 24.0.3
|
||||
jest-regex-util: 30.0.1
|
||||
|
||||
'@jest/schemas@30.0.0':
|
||||
'@jest/schemas@30.0.1':
|
||||
dependencies:
|
||||
'@sinclair/typebox': 0.34.33
|
||||
|
||||
'@jest/types@30.0.0':
|
||||
'@jest/types@30.0.1':
|
||||
dependencies:
|
||||
'@jest/pattern': 30.0.0
|
||||
'@jest/schemas': 30.0.0
|
||||
'@jest/pattern': 30.0.1
|
||||
'@jest/schemas': 30.0.1
|
||||
'@types/istanbul-lib-coverage': 2.0.6
|
||||
'@types/istanbul-reports': 3.0.4
|
||||
'@types/node': 24.0.1
|
||||
'@types/node': 24.0.3
|
||||
'@types/yargs': 17.0.33
|
||||
chalk: 4.1.2
|
||||
|
||||
@ -2337,16 +2337,16 @@ snapshots:
|
||||
|
||||
'@sinclair/typebox@0.34.33': {}
|
||||
|
||||
'@swc-node/core@1.13.3(@swc/core@1.12.1)(@swc/types@0.1.23)':
|
||||
'@swc-node/core@1.13.3(@swc/core@1.12.4)(@swc/types@0.1.23)':
|
||||
dependencies:
|
||||
'@swc/core': 1.12.1
|
||||
'@swc/core': 1.12.4
|
||||
'@swc/types': 0.1.23
|
||||
|
||||
'@swc-node/register@1.10.10(@swc/core@1.12.1)(@swc/types@0.1.23)(typescript@5.8.3)':
|
||||
'@swc-node/register@1.10.10(@swc/core@1.12.4)(@swc/types@0.1.23)(typescript@5.8.3)':
|
||||
dependencies:
|
||||
'@swc-node/core': 1.13.3(@swc/core@1.12.1)(@swc/types@0.1.23)
|
||||
'@swc-node/core': 1.13.3(@swc/core@1.12.4)(@swc/types@0.1.23)
|
||||
'@swc-node/sourcemap-support': 0.5.1
|
||||
'@swc/core': 1.12.1
|
||||
'@swc/core': 1.12.4
|
||||
colorette: 2.0.20
|
||||
debug: 4.4.1(supports-color@8.1.1)
|
||||
oxc-resolver: 5.0.0
|
||||
@ -2362,51 +2362,51 @@ snapshots:
|
||||
source-map-support: 0.5.21
|
||||
tslib: 2.8.1
|
||||
|
||||
'@swc/core-darwin-arm64@1.12.1':
|
||||
'@swc/core-darwin-arm64@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-darwin-x64@1.12.1':
|
||||
'@swc/core-darwin-x64@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-linux-arm-gnueabihf@1.12.1':
|
||||
'@swc/core-linux-arm-gnueabihf@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-linux-arm64-gnu@1.12.1':
|
||||
'@swc/core-linux-arm64-gnu@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-linux-arm64-musl@1.12.1':
|
||||
'@swc/core-linux-arm64-musl@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-linux-x64-gnu@1.12.1':
|
||||
'@swc/core-linux-x64-gnu@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-linux-x64-musl@1.12.1':
|
||||
'@swc/core-linux-x64-musl@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-win32-arm64-msvc@1.12.1':
|
||||
'@swc/core-win32-arm64-msvc@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-win32-ia32-msvc@1.12.1':
|
||||
'@swc/core-win32-ia32-msvc@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core-win32-x64-msvc@1.12.1':
|
||||
'@swc/core-win32-x64-msvc@1.12.4':
|
||||
optional: true
|
||||
|
||||
'@swc/core@1.12.1':
|
||||
'@swc/core@1.12.4':
|
||||
dependencies:
|
||||
'@swc/counter': 0.1.3
|
||||
'@swc/types': 0.1.23
|
||||
optionalDependencies:
|
||||
'@swc/core-darwin-arm64': 1.12.1
|
||||
'@swc/core-darwin-x64': 1.12.1
|
||||
'@swc/core-linux-arm-gnueabihf': 1.12.1
|
||||
'@swc/core-linux-arm64-gnu': 1.12.1
|
||||
'@swc/core-linux-arm64-musl': 1.12.1
|
||||
'@swc/core-linux-x64-gnu': 1.12.1
|
||||
'@swc/core-linux-x64-musl': 1.12.1
|
||||
'@swc/core-win32-arm64-msvc': 1.12.1
|
||||
'@swc/core-win32-ia32-msvc': 1.12.1
|
||||
'@swc/core-win32-x64-msvc': 1.12.1
|
||||
'@swc/core-darwin-arm64': 1.12.4
|
||||
'@swc/core-darwin-x64': 1.12.4
|
||||
'@swc/core-linux-arm-gnueabihf': 1.12.4
|
||||
'@swc/core-linux-arm64-gnu': 1.12.4
|
||||
'@swc/core-linux-arm64-musl': 1.12.4
|
||||
'@swc/core-linux-x64-gnu': 1.12.4
|
||||
'@swc/core-linux-x64-musl': 1.12.4
|
||||
'@swc/core-win32-arm64-msvc': 1.12.4
|
||||
'@swc/core-win32-ia32-msvc': 1.12.4
|
||||
'@swc/core-win32-x64-msvc': 1.12.4
|
||||
|
||||
'@swc/counter@0.1.3': {}
|
||||
|
||||
@ -2425,15 +2425,15 @@ snapshots:
|
||||
|
||||
'@types/better-sqlite3@7.6.13':
|
||||
dependencies:
|
||||
'@types/node': 24.0.1
|
||||
'@types/node': 24.0.3
|
||||
|
||||
'@types/cli-progress@3.11.6':
|
||||
dependencies:
|
||||
'@types/node': 24.0.1
|
||||
'@types/node': 24.0.3
|
||||
|
||||
'@types/dns2@2.0.9':
|
||||
dependencies:
|
||||
'@types/node': 24.0.1
|
||||
'@types/node': 24.0.3
|
||||
|
||||
'@types/estree@1.0.6': {}
|
||||
|
||||
@ -2453,7 +2453,7 @@ snapshots:
|
||||
|
||||
'@types/mocha@10.0.10': {}
|
||||
|
||||
'@types/node@24.0.1':
|
||||
'@types/node@24.0.3':
|
||||
dependencies:
|
||||
undici-types: 7.8.0
|
||||
|
||||
@ -2465,12 +2465,12 @@ snapshots:
|
||||
|
||||
'@types/tar-fs@2.0.4':
|
||||
dependencies:
|
||||
'@types/node': 24.0.1
|
||||
'@types/node': 24.0.3
|
||||
'@types/tar-stream': 3.1.3
|
||||
|
||||
'@types/tar-stream@3.1.3':
|
||||
dependencies:
|
||||
'@types/node': 24.0.1
|
||||
'@types/node': 24.0.3
|
||||
|
||||
'@types/yargs-parser@21.0.3': {}
|
||||
|
||||
@ -2480,7 +2480,7 @@ snapshots:
|
||||
|
||||
'@types/yauzl-promise@4.0.1':
|
||||
dependencies:
|
||||
'@types/node': 24.0.1
|
||||
'@types/node': 24.0.3
|
||||
|
||||
'@typescript-eslint/eslint-plugin@8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.29.0)(typescript@5.8.3))(eslint@9.29.0)(typescript@5.8.3)':
|
||||
dependencies:
|
||||
@ -2887,7 +2887,7 @@ snapshots:
|
||||
eslint-plugin-regexp: 2.7.0(eslint@9.29.0)
|
||||
eslint-plugin-sukka: 6.22.1(eslint@9.29.0)(typescript@5.8.3)
|
||||
eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.29.0)(typescript@5.8.3))(eslint@9.29.0)(typescript@5.8.3))(eslint@9.29.0)
|
||||
foxts: 3.4.0
|
||||
foxts: 3.5.0
|
||||
jsonc-eslint-parser: 2.4.0
|
||||
picocolors: 1.1.1
|
||||
typescript-eslint: 8.33.1(eslint@9.29.0)(typescript@5.8.3)
|
||||
@ -3037,7 +3037,7 @@ snapshots:
|
||||
'@eslint-sukka/shared': 6.22.1(eslint@9.29.0)(typescript@5.8.3)
|
||||
'@typescript-eslint/type-utils': 8.33.1(eslint@9.29.0)(typescript@5.8.3)
|
||||
'@typescript-eslint/utils': 8.33.1(eslint@9.29.0)(typescript@5.8.3)
|
||||
foxts: 3.4.0
|
||||
foxts: 3.5.0
|
||||
optionalDependencies:
|
||||
typescript: 5.8.3
|
||||
transitivePeerDependencies:
|
||||
@ -3137,14 +3137,14 @@ snapshots:
|
||||
|
||||
expand-template@2.0.3: {}
|
||||
|
||||
expect@30.0.0:
|
||||
expect@30.0.2:
|
||||
dependencies:
|
||||
'@jest/expect-utils': 30.0.0
|
||||
'@jest/get-type': 30.0.0
|
||||
jest-matcher-utils: 30.0.0
|
||||
jest-message-util: 30.0.0
|
||||
jest-mock: 30.0.0
|
||||
jest-util: 30.0.0
|
||||
'@jest/expect-utils': 30.0.2
|
||||
'@jest/get-type': 30.0.1
|
||||
jest-matcher-utils: 30.0.2
|
||||
jest-message-util: 30.0.2
|
||||
jest-mock: 30.0.2
|
||||
jest-util: 30.0.2
|
||||
|
||||
fast-cidr-tools@0.3.2: {}
|
||||
|
||||
@ -3203,7 +3203,7 @@ snapshots:
|
||||
cross-spawn: 7.0.6
|
||||
signal-exit: 4.1.0
|
||||
|
||||
foxts@3.4.0:
|
||||
foxts@3.5.0:
|
||||
dependencies:
|
||||
fast-escape-html: 1.1.0
|
||||
|
||||
@ -3322,44 +3322,44 @@ snapshots:
|
||||
optionalDependencies:
|
||||
'@pkgjs/parseargs': 0.11.0
|
||||
|
||||
jest-diff@30.0.0:
|
||||
jest-diff@30.0.2:
|
||||
dependencies:
|
||||
'@jest/diff-sequences': 30.0.0
|
||||
'@jest/get-type': 30.0.0
|
||||
'@jest/diff-sequences': 30.0.1
|
||||
'@jest/get-type': 30.0.1
|
||||
chalk: 4.1.2
|
||||
pretty-format: 30.0.0
|
||||
pretty-format: 30.0.2
|
||||
|
||||
jest-matcher-utils@30.0.0:
|
||||
jest-matcher-utils@30.0.2:
|
||||
dependencies:
|
||||
'@jest/get-type': 30.0.0
|
||||
'@jest/get-type': 30.0.1
|
||||
chalk: 4.1.2
|
||||
jest-diff: 30.0.0
|
||||
pretty-format: 30.0.0
|
||||
jest-diff: 30.0.2
|
||||
pretty-format: 30.0.2
|
||||
|
||||
jest-message-util@30.0.0:
|
||||
jest-message-util@30.0.2:
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.27.1
|
||||
'@jest/types': 30.0.0
|
||||
'@jest/types': 30.0.1
|
||||
'@types/stack-utils': 2.0.3
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.11
|
||||
micromatch: 4.0.8
|
||||
pretty-format: 30.0.0
|
||||
pretty-format: 30.0.2
|
||||
slash: 3.0.0
|
||||
stack-utils: 2.0.6
|
||||
|
||||
jest-mock@30.0.0:
|
||||
jest-mock@30.0.2:
|
||||
dependencies:
|
||||
'@jest/types': 30.0.0
|
||||
'@types/node': 24.0.1
|
||||
jest-util: 30.0.0
|
||||
'@jest/types': 30.0.1
|
||||
'@types/node': 24.0.3
|
||||
jest-util: 30.0.2
|
||||
|
||||
jest-regex-util@30.0.0: {}
|
||||
jest-regex-util@30.0.1: {}
|
||||
|
||||
jest-util@30.0.0:
|
||||
jest-util@30.0.2:
|
||||
dependencies:
|
||||
'@jest/types': 30.0.0
|
||||
'@types/node': 24.0.1
|
||||
'@jest/types': 30.0.1
|
||||
'@types/node': 24.0.3
|
||||
chalk: 4.1.2
|
||||
ci-info: 4.2.0
|
||||
graceful-fs: 4.2.11
|
||||
@ -3435,7 +3435,7 @@ snapshots:
|
||||
|
||||
mkdirp-classic@0.5.3: {}
|
||||
|
||||
mocha@11.6.0:
|
||||
mocha@11.7.0:
|
||||
dependencies:
|
||||
browser-stdout: 1.3.1
|
||||
chokidar: 4.0.3
|
||||
@ -3552,9 +3552,9 @@ snapshots:
|
||||
|
||||
prelude-ls@1.2.1: {}
|
||||
|
||||
pretty-format@30.0.0:
|
||||
pretty-format@30.0.2:
|
||||
dependencies:
|
||||
'@jest/schemas': 30.0.0
|
||||
'@jest/schemas': 30.0.1
|
||||
ansi-styles: 5.2.0
|
||||
react-is: 18.3.1
|
||||
|
||||
@ -3732,7 +3732,7 @@ snapshots:
|
||||
pump: 3.0.2
|
||||
tar-stream: 2.2.0
|
||||
|
||||
tar-fs@3.0.9:
|
||||
tar-fs@3.0.10:
|
||||
dependencies:
|
||||
pump: 3.0.2
|
||||
tar-stream: 3.1.7
|
||||
@ -3827,7 +3827,7 @@ snapshots:
|
||||
undici-cache-store-better-sqlite3@1.0.0(undici@7.10.0):
|
||||
dependencies:
|
||||
better-sqlite3: 11.10.0
|
||||
foxts: 3.4.0
|
||||
foxts: 3.5.0
|
||||
undici: 7.10.0
|
||||
|
||||
undici-types@7.8.0: {}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user