Skip to content

Commit 482a415

Browse files
Update dependencies (#469)
1 parent 91c57cb commit 482a415

File tree

8 files changed

+306
-278
lines changed

8 files changed

+306
-278
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 20.12.2
1+
nodejs 22.10.0

cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { readFileSync } from 'node:fs';
44
import path from 'node:path';
55
import * as url from 'url';
6-
import { FiltersEngine, Request } from '@cliqz/adblocker';
6+
import { FiltersEngine, Request } from '@ghostery/adblocker';
77

88
const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
99

lint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env node
22

3-
import * as adblocker from '@cliqz/adblocker';
3+
import * as adblocker from '@ghostery/adblocker';
44
import chalk from 'chalk';
55

66
import * as fs from 'fs';

package-lock.json

Lines changed: 291 additions & 263 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,22 @@
4444
"node": ">=18.0"
4545
},
4646
"dependencies": {
47-
"@cliqz/adblocker": "1.27.3",
48-
"better-sqlite3": "^9.6.0",
47+
"@ghostery/adblocker": "2.0.2",
48+
"better-sqlite3": "^11.5.0",
4949
"enolib": "^0.8.2",
5050
"iso-3166-1-alpha-2": "^1.0.2",
51-
"tldts-experimental": "^6.1.19"
51+
"tldts-experimental": "^6.1.57"
5252
},
5353
"devDependencies": {
54-
"@types/node": "20.12.10",
55-
"@typescript-eslint/eslint-plugin": "7.8.0",
56-
"@typescript-eslint/parser": "7.8.0",
54+
"@types/node": "22.8.2",
55+
"@typescript-eslint/eslint-plugin": "8.12.2",
56+
"@typescript-eslint/parser": "8.12.2",
5757
"chalk": "5.3.0",
5858
"ejs": "3.1.10",
5959
"eslint": "8.57.0",
6060
"eslint-config-prettier": "9.1.0",
61-
"eslint-plugin-prettier": "5.1.3",
62-
"prettier": "3.2.5",
63-
"typescript": "5.4.5"
61+
"eslint-plugin-prettier": "5.2.1",
62+
"prettier": "3.3.3",
63+
"typescript": "5.6.3"
6464
}
6565
}

scripts/export-engine/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { rmSync, existsSync, writeFileSync, readFileSync } from 'node:fs';
22
import path from 'node:path';
3-
import { FiltersEngine } from '@cliqz/adblocker';
3+
import { FiltersEngine } from '@ghostery/adblocker';
44
import { prepareDistFolder, BASE_PATH } from '../helpers.js';
55

66
(async () => {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FiltersEngine, Request, ENGINE_VERSION } from '@cliqz/adblocker';
1+
import { FiltersEngine, Request, ENGINE_VERSION } from '@ghostery/adblocker';
22

33
export { Request as AdblockerRequest };
44

test/db/patterns.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import test from 'node:test';
22
import { readdirSync, readFileSync } from 'node:fs';
33
import path from 'node:path';
44
import assert from 'node:assert/strict';
5-
import * as adblocker from '@cliqz/adblocker';
5+
import * as adblocker from '@ghostery/adblocker';
66
import enolib from 'enolib';
77
import {
88
CATEGORIES,

0 commit comments

Comments
 (0)