-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.07 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.07 KB
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
53
54
55
{
"name": "adguard-filters",
"version": "1.1.0",
"description": "AdGuard filters registry",
"homepage": "https://adguard.com",
"main": "scripts/build/build.js",
"type": "module",
"scripts": {
"auto-build": "bash scripts/auto_build.sh",
"lint": "yarn lint:code && yarn lint:types && yarn lint:md",
"lint:code": "eslint . --ext .js,.ts",
"lint:types": "tsc --noEmit --project tsconfig.json",
"lint:md": "markdownlint **/*.md",
"test": "vitest run",
"build": "tsx scripts/build/build.js",
"build:patches": "node scripts/build/patches.js",
"validate": "yarn validate:platforms && yarn validate:locales",
"validate:platforms": "tsx scripts/validation/validate_platforms.js",
"validate:locales": "tsx scripts/validation/validate_locales.js",
"update-wildcard-domains": "tsx scripts/wildcard-domain-processor update-wildcard-domains",
"expand-wildcard-domains": "tsx scripts/wildcard-domain-processor expand-wildcard-domains",
"compress": "tsx scripts/repository/compress.js"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@adguard/agtree": "^3.4.3",
"@adguard/dead-domains-linter": "^1.0.22",
"@adguard/diff-builder": "1.1.2",
"@adguard/filters-compiler": "3.2.4",
"add": "^2.0.6",
"crypto-js": "^4.2.0",
"zod": "3"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.0",
"markdownlint": "0.34.0",
"markdownlint-cli": "0.41.0",
"simple-git": "^3.21.0",
"tldts": "^6.1.30",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.5.2",
"vitest": "^3.2.4"
}
}