-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.17 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@adguard/filters-compiler",
"version": "3.2.9",
"description": "AdGuard filters compiler",
"homepage": "http://adguard.com",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup --config rollup.config.js --silent",
"test": "vitest",
"lint": "pnpm lint:code && pnpm lint:types",
"lint:code": "eslint --cache .",
"lint:types": "tsc --noEmit",
"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": "4.1.0-beta.0",
"@adguard/css-tokenizer": "1.2.0",
"@adguard/ecss-tree": "2.0.1",
"@adguard/extended-css": "2.1.1",
"@adguard/filters-downloader": "2.4.4",
"@adguard/logger": "2.0.0",
"@adguard/scriptlets": "2.3.1",
"@adguard/tsurlfilter": "4.0.5",
"@eslint/css-tree": "3.6.6",
"ajv": "8.17.1",
"child_process": "1.0.2",
"jsdom": "21.1.2",
"md5": "2.3.0",
"moment": "2.30.1",
"tldts": "5.7.112",
"utf8": "3.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "12.3.0",
"@types/jsdom": "21.1.7",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"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",
"rimraf": "6.1.3",
"rollup": "4.39.0",
"rollup-plugin-copy": "3.5.0",
"tslib": "2.8.1",
"typescript": "6.0.3",
"vitest": "3.0.5"
}
}