-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
56
57
58
59
{
"name": "@adguard/filters-compiler",
"version": "3.2.4",
"description": "AdGuard filters compiler",
"homepage": "http://adguard.com",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "rollup --config rollup.config.js --silent",
"test": "vitest",
"lint": "eslint --cache .",
"increment": "pnpm version patch --no-git-tag-version",
"build-txt": "node tasks/build-txt.mjs",
"build-schemas": "node --experimental-specifier-resolution=node tasks/build-schemas/index.js",
"prepare": "husky install",
"tgz": "pnpm pack --out filters-compiler.tgz"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@adguard/agtree": "^3.4.3",
"@adguard/css-tokenizer": "^1.2.0",
"@adguard/ecss-tree": "^2.0.1",
"@eslint/css-tree": "3.6.6",
"@adguard/extended-css": "^2.1.1",
"@adguard/filters-downloader": "^2.4.0",
"@adguard/logger": "^2.0.0",
"@adguard/scriptlets": "^2.2.14",
"@adguard/tsurlfilter": "^3.5.2",
"ajv": "^8.17.1",
"child_process": ">=1.0.2",
"jsdom": "^21.1.1",
"md5": "2.3.0",
"moment": "^2.29.4",
"tldts": "^5.7.112",
"utf8": "^3.0.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.2",
"rollup": "^4.39.0",
"rollup-plugin-copy": "^3.5.0",
"vitest": "^3.0.5"
}
}