-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
52 lines (52 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "adguard-filters",
"version": "1.1.0",
"description": "AdGuard filters registry",
"homepage": "https://adguard.com",
"main": "scripts/build/build.js",
"scripts": {
"auto-build": "bash scripts/auto_build.sh",
"lint": "eslint . --ext .js,.ts && yarn check-types",
"check-types": "tsc --noEmit --project tsconfig.json",
"test": "jest .",
"build": "node scripts/build/build.js",
"build:patches": "node scripts/build/patches.js",
"validate": "yarn validate:platforms && yarn validate:locales",
"validate:platforms": "node scripts/validation/validate_platforms.js",
"validate:locales": "node scripts/validation/validate_locales.js",
"update-wildcard-domains": "node -r @swc-node/register scripts/wildcard-domain-processor update-wildcard-domains",
"expand-wildcard-domains": "node -r @swc-node/register scripts/wildcard-domain-processor expand-wildcard-domains",
"push": "bash scripts/repository/update.sh",
"compress": "node scripts/repository/compress.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@adguard/agtree": "^1.1.8",
"@adguard/dead-domains-linter": "^1.0.19",
"@adguard/diff-builder": "1.0.18",
"adguard-filters-compiler": "git+https://github.com/AdguardTeam/FiltersCompiler.git#v1.1.148",
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@swc-node/register": "^1.10.0",
"@swc/core": "^1.6.5",
"@swc/jest": "^0.2.36",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"simple-git": "^3.21.0",
"tldts": "^6.1.30",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}