-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.34 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
70
71
72
73
74
75
{
"name": "@adguard/filters-compiler",
"description": "AdGuard filters compiler",
"homepage": "http://adguard.com",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types"
],
"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 && pnpm lint:md",
"lint:code": "eslint --cache .",
"lint:types": "tsc --noEmit",
"lint:md": "markdownlint .",
"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",
"pnpm": ">=10.33.4 <11"
},
"dependencies": {
"@adguard/agtree": "4.2.1",
"@adguard/css-tokenizer": "1.2.0",
"@adguard/ecss-tree": "2.0.1",
"@adguard/extended-css": "2.2.0",
"@adguard/filters-downloader": "2.4.4",
"@adguard/logger": "2.0.0",
"@adguard/scriptlets": "2.5.1",
"@adguard/tsurlfilter": "6.0.3",
"@date-fns/utc": "2.1.1",
"@eslint/css-tree": "3.6.6",
"ajv": "8.17.1",
"child_process": "1.0.2",
"date-fns": "^4.4.0",
"jsdom": "21.1.2",
"md5": "2.3.0",
"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",
"eslint-plugin-jsdoc": "63.2.0",
"husky": "8.0.2",
"markdown-it": "15.0.1",
"markdownlint": "0.40.0",
"markdownlint-cli": "0.48.0",
"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"
}
}