mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 09:10:35 +08:00
Update Download / Global Hosts
This commit is contained in:
parent
aa64f2921f
commit
88af6ddee2
15
Build/lib/normalize-domain.ts
Normal file
15
Build/lib/normalize-domain.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import * as tldts from './cached-tld-parse';
|
||||||
|
import { isProbablyIpv4 } from './is-fast-ip';
|
||||||
|
export const normalizeDomain = (domain: string) => {
|
||||||
|
if (!domain) return null;
|
||||||
|
if (isProbablyIpv4(domain)) return null;
|
||||||
|
|
||||||
|
const parsed = tldts.parse2(domain);
|
||||||
|
if (parsed.isIp) return null;
|
||||||
|
if (!parsed.isIcann && !parsed.isPrivate) return null;
|
||||||
|
|
||||||
|
const h = parsed.hostname;
|
||||||
|
if (!h) return null;
|
||||||
|
|
||||||
|
return h[0] === '.' ? h.slice(1) : h;
|
||||||
|
};
|
||||||
@ -1,14 +1,15 @@
|
|||||||
// @ts-check
|
// @ts-check
|
||||||
import { defaultRequestInit, fetchWithRetry } from './fetch-retry';
|
import { defaultRequestInit, fetchWithRetry } from './fetch-retry';
|
||||||
import * as tldts from './cached-tld-parse';
|
|
||||||
import { fetchRemoteTextAndReadByLine } from './fetch-text-by-line';
|
import { fetchRemoteTextAndReadByLine } from './fetch-text-by-line';
|
||||||
import { NetworkFilter } from '@cliqz/adblocker';
|
import { NetworkFilter } from '@cliqz/adblocker';
|
||||||
import { processLine } from './process-line';
|
import { processLine } from './process-line';
|
||||||
import { getGorhillPublicSuffixPromise } from './get-gorhill-publicsuffix';
|
import { getGorhillPublicSuffixPromise } from './get-gorhill-publicsuffix';
|
||||||
import type { PublicSuffixList } from 'gorhill-publicsuffixlist';
|
import type { PublicSuffixList } from 'gorhill-publicsuffixlist';
|
||||||
import { isProbablyIpv4 } from './is-fast-ip';
|
|
||||||
import { traceAsync } from './trace-runner';
|
import { traceAsync } from './trace-runner';
|
||||||
import picocolors from 'picocolors';
|
import picocolors from 'picocolors';
|
||||||
|
import { normalizeDomain } from './normalize-domain';
|
||||||
|
|
||||||
const DEBUG_DOMAIN_TO_FIND: string | null = null; // example.com | null
|
const DEBUG_DOMAIN_TO_FIND: string | null = null; // example.com | null
|
||||||
let foundDebugDomain = false;
|
let foundDebugDomain = false;
|
||||||
@ -23,20 +24,6 @@ const warnOnce = (url: string, isWhite: boolean, ...message: any[]) => {
|
|||||||
console.warn(url, isWhite ? '(white)' : '(black)', ...message);
|
console.warn(url, isWhite ? '(white)' : '(black)', ...message);
|
||||||
};
|
};
|
||||||
|
|
||||||
const normalizeDomain = (domain: string) => {
|
|
||||||
if (!domain) return null;
|
|
||||||
if (isProbablyIpv4(domain)) return null;
|
|
||||||
|
|
||||||
const parsed = tldts.parse2(domain);
|
|
||||||
if (parsed.isIp) return null;
|
|
||||||
if (!parsed.isIcann && !parsed.isPrivate) return null;
|
|
||||||
|
|
||||||
const h = parsed.hostname;
|
|
||||||
if (!h) return null;
|
|
||||||
|
|
||||||
return h[0] === '.' ? h.slice(1) : h;
|
|
||||||
};
|
|
||||||
|
|
||||||
export function processDomainLists(domainListsUrl: string, includeAllSubDomain = false) {
|
export function processDomainLists(domainListsUrl: string, includeAllSubDomain = false) {
|
||||||
return traceAsync(`- processDomainLists: ${domainListsUrl}`, async () => {
|
return traceAsync(`- processDomainLists: ${domainListsUrl}`, async () => {
|
||||||
const domainSets = new Set<string>();
|
const domainSets = new Set<string>();
|
||||||
|
|||||||
117
Build/validate-gfwlist.ts
Normal file
117
Build/validate-gfwlist.ts
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
import { processLine } from './lib/process-line';
|
||||||
|
import { normalizeDomain } from './lib/normalize-domain';
|
||||||
|
import { createTrie } from './lib/trie';
|
||||||
|
import { Readable } from 'stream';
|
||||||
|
import { parse } from 'csv-parse';
|
||||||
|
import { readFileByLine } from './lib/fetch-text-by-line';
|
||||||
|
import path from 'path';
|
||||||
|
|
||||||
|
export const parseGfwList = async () => {
|
||||||
|
const whiteSet = new Set<string>();
|
||||||
|
const blackSet = new Set<string>();
|
||||||
|
|
||||||
|
const text = await (await fetch('https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt')).text();
|
||||||
|
for (const l of atob(text).split('\n')) {
|
||||||
|
const line = processLine(l);
|
||||||
|
if (!line) continue;
|
||||||
|
if (line[0] === '[') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (line.includes('.*')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (line.includes('*')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (line.startsWith('@@||')) {
|
||||||
|
whiteSet.add(line.slice(4));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (line.startsWith('@@|http://')) {
|
||||||
|
whiteSet.add(line.slice(8));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (line.startsWith('@@|https://')) {
|
||||||
|
whiteSet.add(line.slice(9));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (line.startsWith('||')) {
|
||||||
|
blackSet.add(line.slice(2));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (line.startsWith('|')) {
|
||||||
|
blackSet.add(line.slice(1));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (line.startsWith('.')) {
|
||||||
|
blackSet.add(line.slice(1));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const d = normalizeDomain(line);
|
||||||
|
if (d) {
|
||||||
|
blackSet.add(d);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const top500Gfwed = new Set<string>();
|
||||||
|
|
||||||
|
const res = await fetch('https://radar.cloudflare.com/charts/LargerTopDomainsTable/attachment?id=843&top=1000');
|
||||||
|
const stream = Readable.fromWeb(res.body!).pipe(parse());
|
||||||
|
|
||||||
|
const trie = createTrie(blackSet);
|
||||||
|
|
||||||
|
for await (const [domain] of stream) {
|
||||||
|
if (trie.has(domain)) {
|
||||||
|
top500Gfwed.add(domain);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const notIncludedTop500Gfwed = new Set<string>(top500Gfwed);
|
||||||
|
|
||||||
|
const runAgainstRuleset = async (ruleset: string) => {
|
||||||
|
for await (const l of readFileByLine(ruleset)) {
|
||||||
|
const line = processLine(l);
|
||||||
|
if (!line) continue;
|
||||||
|
const [type, domain] = line.split(',');
|
||||||
|
if (type === 'DOMAIN-SUFFIX') {
|
||||||
|
if (top500Gfwed.has(domain)) {
|
||||||
|
notIncludedTop500Gfwed.delete(domain);
|
||||||
|
}
|
||||||
|
} else if (type === 'DOMAIN-KEYWORD') {
|
||||||
|
for (const d of top500Gfwed) {
|
||||||
|
if (d.includes(domain)) {
|
||||||
|
notIncludedTop500Gfwed.delete(d);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
runAgainstRuleset(path.resolve(import.meta.dir, '../Source/non_ip/global_plus.conf')),
|
||||||
|
runAgainstRuleset(path.resolve(import.meta.dir, '../List/non_ip/stream.conf'))
|
||||||
|
]);
|
||||||
|
|
||||||
|
// for await (const l of readFileByLine(path.resolve(import.meta.dir, '../List/non_ip/stream.conf'))) {
|
||||||
|
// const line = processLine(l);
|
||||||
|
// if (!line) continue;
|
||||||
|
// const domain = line[0] === '.' ? line.slice(1) : line;
|
||||||
|
// if (top500Gfwed.has(domain)) {
|
||||||
|
// notIncludedTop500Gfwed.delete(domain);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
console.log(notIncludedTop500Gfwed);
|
||||||
|
|
||||||
|
return [
|
||||||
|
whiteSet,
|
||||||
|
blackSet,
|
||||||
|
trie,
|
||||||
|
top500Gfwed
|
||||||
|
] as const;
|
||||||
|
};
|
||||||
|
|
||||||
|
if (import.meta.main) {
|
||||||
|
parseGfwList();
|
||||||
|
}
|
||||||
@ -169,6 +169,7 @@ fedorapeople.org
|
|||||||
mirrors.edge.kernel.org
|
mirrors.edge.kernel.org
|
||||||
.mirrors.dotsrc.org
|
.mirrors.dotsrc.org
|
||||||
.mirror.clarkson.edu
|
.mirror.clarkson.edu
|
||||||
|
.mirror.constant.com
|
||||||
# WhatPulse
|
# WhatPulse
|
||||||
releases.whatpulse.org
|
releases.whatpulse.org
|
||||||
# GIMP
|
# GIMP
|
||||||
|
|||||||
@ -16,8 +16,6 @@ DOMAIN,news-edge.apple.com
|
|||||||
|
|
||||||
# >> Google
|
# >> Google
|
||||||
DOMAIN-SUFFIX,abc.xyz
|
DOMAIN-SUFFIX,abc.xyz
|
||||||
DOMAIN-SUFFIX,ampproject.org
|
|
||||||
DOMAIN-SUFFIX,android.com
|
|
||||||
DOMAIN-SUFFIX,androidify.com
|
DOMAIN-SUFFIX,androidify.com
|
||||||
DOMAIN-SUFFIX,autodraw.com
|
DOMAIN-SUFFIX,autodraw.com
|
||||||
DOMAIN-SUFFIX,capitalg.com
|
DOMAIN-SUFFIX,capitalg.com
|
||||||
@ -35,7 +33,6 @@ DOMAIN-SUFFIX,getmdl.io
|
|||||||
DOMAIN-SUFFIX,gmodules.com
|
DOMAIN-SUFFIX,gmodules.com
|
||||||
DOMAIN-SUFFIX,godoc.org
|
DOMAIN-SUFFIX,godoc.org
|
||||||
DOMAIN-SUFFIX,golang.org
|
DOMAIN-SUFFIX,golang.org
|
||||||
DOMAIN-SUFFIX,gstatic.com
|
|
||||||
DOMAIN-SUFFIX,gv.com
|
DOMAIN-SUFFIX,gv.com
|
||||||
DOMAIN-SUFFIX,gwtproject.org
|
DOMAIN-SUFFIX,gwtproject.org
|
||||||
DOMAIN-SUFFIX,itasoftware.com
|
DOMAIN-SUFFIX,itasoftware.com
|
||||||
@ -68,13 +65,6 @@ DOMAIN-SUFFIX,bing.com
|
|||||||
# >> Oracle
|
# >> Oracle
|
||||||
DOMAIN-SUFFIX,oracle.com
|
DOMAIN-SUFFIX,oracle.com
|
||||||
|
|
||||||
# >> Snapchat
|
|
||||||
DOMAIN-SUFFIX,sc-cdn.net
|
|
||||||
DOMAIN-SUFFIX,snap-dev.net
|
|
||||||
DOMAIN-SUFFIX,snap.com
|
|
||||||
DOMAIN-SUFFIX,snapchat.com
|
|
||||||
DOMAIN-SUFFIX,snapkit.co
|
|
||||||
|
|
||||||
# >> 451
|
# >> 451
|
||||||
DOMAIN-SUFFIX,aicoin.com
|
DOMAIN-SUFFIX,aicoin.com
|
||||||
DOMAIN-SUFFIX,aimoon.com
|
DOMAIN-SUFFIX,aimoon.com
|
||||||
|
|||||||
@ -5,9 +5,13 @@
|
|||||||
DOMAIN-SUFFIX,cloudflareresolve.com
|
DOMAIN-SUFFIX,cloudflareresolve.com
|
||||||
|
|
||||||
# >> Google
|
# >> Google
|
||||||
|
DOMAIN-SUFFIX,ampproject.org
|
||||||
|
DOMAIN-SUFFIX,android.com
|
||||||
DOMAIN-SUFFIX,appspot.com
|
DOMAIN-SUFFIX,appspot.com
|
||||||
DOMAIN-SUFFIX,blogger.com
|
DOMAIN-SUFFIX,blogger.com
|
||||||
DOMAIN-SUFFIX,blogblog.com
|
DOMAIN-SUFFIX,blogblog.com
|
||||||
|
DOMAIN-SUFFIX,cloudfunctions.net
|
||||||
|
DOMAIN-SUFFIX,firebaseio.com
|
||||||
DOMAIN-SUFFIX,getoutline.org
|
DOMAIN-SUFFIX,getoutline.org
|
||||||
DOMAIN-SUFFIX,gvt0.com
|
DOMAIN-SUFFIX,gvt0.com
|
||||||
DOMAIN-SUFFIX,gvt1.com
|
DOMAIN-SUFFIX,gvt1.com
|
||||||
@ -15,6 +19,7 @@ DOMAIN-SUFFIX,gvt2.com
|
|||||||
DOMAIN-SUFFIX,gvt3.com
|
DOMAIN-SUFFIX,gvt3.com
|
||||||
DOMAIN-SUFFIX,googleapis.cn
|
DOMAIN-SUFFIX,googleapis.cn
|
||||||
DOMAIN-KEYWORD,google
|
DOMAIN-KEYWORD,google
|
||||||
|
DOMAIN-SUFFIX,gstatic.com
|
||||||
DOMAIN-SUFFIX,gmail.com
|
DOMAIN-SUFFIX,gmail.com
|
||||||
DOMAIN-SUFFIX,ggpht.com
|
DOMAIN-SUFFIX,ggpht.com
|
||||||
DOMAIN-KEYWORD,blogspot
|
DOMAIN-KEYWORD,blogspot
|
||||||
@ -22,6 +27,10 @@ DOMAIN-SUFFIX,youtu.be
|
|||||||
DOMAIN-SUFFIX,yt.be
|
DOMAIN-SUFFIX,yt.be
|
||||||
DOMAIN-SUFFIX,ytimg.com
|
DOMAIN-SUFFIX,ytimg.com
|
||||||
DOMAIN-SUFFIX,g.co
|
DOMAIN-SUFFIX,g.co
|
||||||
|
DOMAIN-SUFFIX,goo.gl
|
||||||
|
DOMAIN-SUFFIX,dns.google
|
||||||
|
# ocsp.pki.goog is available in Mainland China
|
||||||
|
DOMAIN,pki.goog
|
||||||
|
|
||||||
# >> Facebook
|
# >> Facebook
|
||||||
DOMAIN-SUFFIX,cdninstagram.com
|
DOMAIN-SUFFIX,cdninstagram.com
|
||||||
@ -111,6 +120,19 @@ DOMAIN-SUFFIX,archive.ph
|
|||||||
DOMAIN-SUFFIX,archive.is
|
DOMAIN-SUFFIX,archive.is
|
||||||
DOMAIN-SUFFIX,archive.today
|
DOMAIN-SUFFIX,archive.today
|
||||||
|
|
||||||
|
# >> Snapchat
|
||||||
|
DOMAIN-SUFFIX,sc-cdn.net
|
||||||
|
DOMAIN-SUFFIX,snap-dev.net
|
||||||
|
DOMAIN-SUFFIX,snap.com
|
||||||
|
DOMAIN-SUFFIX,snapchat.com
|
||||||
|
DOMAIN-SUFFIX,snapkit.co
|
||||||
|
|
||||||
|
# Signal
|
||||||
|
DOMAIN-SUFFIX,signal.art
|
||||||
|
DOMAIN-SUFFIX,signal.org
|
||||||
|
DOMAIN-SUFFIX,signalusers.org
|
||||||
|
DOMAIN-SUFFIX,whispersystems.org
|
||||||
|
|
||||||
# >> Other
|
# >> Other
|
||||||
DOMAIN-SUFFIX,abc.net.au
|
DOMAIN-SUFFIX,abc.net.au
|
||||||
DOMAIN-SUFFIX,amazon.co.jp
|
DOMAIN-SUFFIX,amazon.co.jp
|
||||||
@ -126,6 +148,7 @@ DOMAIN-SUFFIX,bibox.com
|
|||||||
DOMAIN-SUFFIX,binance.com
|
DOMAIN-SUFFIX,binance.com
|
||||||
DOMAIN-SUFFIX,bitfinex.com
|
DOMAIN-SUFFIX,bitfinex.com
|
||||||
DOMAIN-SUFFIX,booklive.jp
|
DOMAIN-SUFFIX,booklive.jp
|
||||||
|
DOMAIN-SUFFIX,brave.com
|
||||||
DOMAIN-SUFFIX,bwh1.net
|
DOMAIN-SUFFIX,bwh1.net
|
||||||
DOMAIN-SUFFIX,cbc.ca
|
DOMAIN-SUFFIX,cbc.ca
|
||||||
DOMAIN-SUFFIX,character.ai
|
DOMAIN-SUFFIX,character.ai
|
||||||
@ -142,7 +165,9 @@ DOMAIN-SUFFIX,exhentai.org
|
|||||||
DOMAIN-SUFFIX,feedly.com
|
DOMAIN-SUFFIX,feedly.com
|
||||||
DOMAIN-SUFFIX,flickr.com
|
DOMAIN-SUFFIX,flickr.com
|
||||||
DOMAIN-SUFFIX,gate.io
|
DOMAIN-SUFFIX,gate.io
|
||||||
|
DOMAIN-SUFFIX,godaddy.com
|
||||||
DOMAIN-SUFFIX,goodreads.com
|
DOMAIN-SUFFIX,goodreads.com
|
||||||
|
DOMAIN-SUFFIX,homedepot.com
|
||||||
DOMAIN-SUFFIX,huggingface.co
|
DOMAIN-SUFFIX,huggingface.co
|
||||||
DOMAIN-SUFFIX,initiummall.com
|
DOMAIN-SUFFIX,initiummall.com
|
||||||
DOMAIN-SUFFIX,issuu.com
|
DOMAIN-SUFFIX,issuu.com
|
||||||
@ -171,6 +196,7 @@ DOMAIN-SUFFIX,pixiv.net
|
|||||||
DOMAIN-SUFFIX,pixiv.org
|
DOMAIN-SUFFIX,pixiv.org
|
||||||
DOMAIN-SUFFIX,pximg.net
|
DOMAIN-SUFFIX,pximg.net
|
||||||
DOMAIN-SUFFIX,pornhub.com
|
DOMAIN-SUFFIX,pornhub.com
|
||||||
|
DOMAIN-SUFFIX,phncdn.com
|
||||||
DOMAIN-SUFFIX,quora.com
|
DOMAIN-SUFFIX,quora.com
|
||||||
DOMAIN-SUFFIX,quoracdn.net
|
DOMAIN-SUFFIX,quoracdn.net
|
||||||
DOMAIN-SUFFIX,redd.it
|
DOMAIN-SUFFIX,redd.it
|
||||||
@ -185,10 +211,12 @@ DOMAIN-SUFFIX,shadowsocks.org
|
|||||||
DOMAIN-SUFFIX,slideshare.net
|
DOMAIN-SUFFIX,slideshare.net
|
||||||
DOMAIN-SUFFIX,soundcloud.com
|
DOMAIN-SUFFIX,soundcloud.com
|
||||||
DOMAIN-SUFFIX,steamcommunity.com
|
DOMAIN-SUFFIX,steamcommunity.com
|
||||||
|
DOMAIN-SUFFIX,surfshark.com
|
||||||
DOMAIN-SUFFIX,theinitium.com
|
DOMAIN-SUFFIX,theinitium.com
|
||||||
DOMAIN-SUFFIX,theguardian.com
|
DOMAIN-SUFFIX,theguardian.com
|
||||||
DOMAIN-SUFFIX,thisav.com
|
DOMAIN-SUFFIX,thisav.com
|
||||||
DOMAIN-SUFFIX,tineye.com
|
DOMAIN-SUFFIX,tineye.com
|
||||||
|
DOMAIN-SUFFIX,tradingview.com
|
||||||
DOMAIN-SUFFIX,tumblr.com
|
DOMAIN-SUFFIX,tumblr.com
|
||||||
DOMAIN-SUFFIX,turbobit.net
|
DOMAIN-SUFFIX,turbobit.net
|
||||||
DOMAIN-SUFFIX,twitch.tv
|
DOMAIN-SUFFIX,twitch.tv
|
||||||
@ -198,11 +226,13 @@ DOMAIN-SUFFIX,v2fly.org
|
|||||||
DOMAIN-SUFFIX,v2ray.com
|
DOMAIN-SUFFIX,v2ray.com
|
||||||
DOMAIN-SUFFIX,vimeo.com
|
DOMAIN-SUFFIX,vimeo.com
|
||||||
DOMAIN-SUFFIX,vine.co
|
DOMAIN-SUFFIX,vine.co
|
||||||
|
DOMAIN-SUFFIX,viber.com
|
||||||
DOMAIN-SUFFIX,voachinese.com
|
DOMAIN-SUFFIX,voachinese.com
|
||||||
DOMAIN-SUFFIX,washingtonpost.com
|
DOMAIN-SUFFIX,washingtonpost.com
|
||||||
DOMAIN-SUFFIX,whoer.net
|
DOMAIN-SUFFIX,whoer.net
|
||||||
DOMAIN-SUFFIX,wikibooks.org
|
DOMAIN-SUFFIX,wikibooks.org
|
||||||
DOMAIN-SUFFIX,wikidata.org
|
DOMAIN-SUFFIX,wikidata.org
|
||||||
|
DOMAIN-SUFFIX,wikimedia.org
|
||||||
DOMAIN-SUFFIX,wikinews.org
|
DOMAIN-SUFFIX,wikinews.org
|
||||||
DOMAIN-SUFFIX,wikipedia.org
|
DOMAIN-SUFFIX,wikipedia.org
|
||||||
DOMAIN-SUFFIX,wikiquote.org
|
DOMAIN-SUFFIX,wikiquote.org
|
||||||
@ -210,9 +240,14 @@ DOMAIN-SUFFIX,wikisource.org
|
|||||||
DOMAIN-SUFFIX,wikiversity.org
|
DOMAIN-SUFFIX,wikiversity.org
|
||||||
DOMAIN-SUFFIX,wikivoyage.org
|
DOMAIN-SUFFIX,wikivoyage.org
|
||||||
DOMAIN-SUFFIX,wiktionary.org
|
DOMAIN-SUFFIX,wiktionary.org
|
||||||
|
DOMAIN-SUFFIX,wordpress.com
|
||||||
DOMAIN-SUFFIX,wsj.com
|
DOMAIN-SUFFIX,wsj.com
|
||||||
DOMAIN-SUFFIX,wsj.net
|
DOMAIN-SUFFIX,wsj.net
|
||||||
|
DOMAIN-SUFFIX,xfinity.com
|
||||||
|
DOMAIN-SUFFIX,xhamster.com
|
||||||
|
DOMAIN-SUFFIX,xnxx.com
|
||||||
DOMAIN-SUFFIX,xvideos.com
|
DOMAIN-SUFFIX,xvideos.com
|
||||||
|
DOMAIN-SUFFIX,xvideos-cdn.com
|
||||||
DOMAIN-SUFFIX,yahoo.com
|
DOMAIN-SUFFIX,yahoo.com
|
||||||
DOMAIN,search.yahoo.co.jp
|
DOMAIN,search.yahoo.co.jp
|
||||||
|
|
||||||
|
|||||||
@ -19,6 +19,7 @@
|
|||||||
"async-retry": "^1.3.3",
|
"async-retry": "^1.3.3",
|
||||||
"async-sema": "^3.1.1",
|
"async-sema": "^3.1.1",
|
||||||
"ci-info": "^4.0.0",
|
"ci-info": "^4.0.0",
|
||||||
|
"csv-parse": "^5.5.3",
|
||||||
"fast-cidr-tools": "^0.2.2",
|
"fast-cidr-tools": "^0.2.2",
|
||||||
"gorhill-publicsuffixlist": "github:gorhill/publicsuffixlist.js",
|
"gorhill-publicsuffixlist": "github:gorhill/publicsuffixlist.js",
|
||||||
"mnemonist": "^0.39.6",
|
"mnemonist": "^0.39.6",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user