@adguard/agtree 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/build.txt ADDED
@@ -0,0 +1 @@
1
+ version=1.0.1
package/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@adguard/agtree",
3
+ "version": "1.0.1",
4
+ "description": "Universal adblock filter list parser.",
5
+ "keywords": [
6
+ "adblock",
7
+ "filter",
8
+ "list",
9
+ "parser",
10
+ "ast"
11
+ ],
12
+ "author": "AdGuard Software Ltd.",
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/AdguardTeam/AGTree.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/AdguardTeam/AGTree/issues"
20
+ },
21
+ "homepage": "https://github.com/AdguardTeam/AGTree#readme",
22
+ "type": "module",
23
+ "main": "dist/agtree.cjs",
24
+ "module": "dist/agtree.esm.js",
25
+ "browser": "dist/agtree.umd.min.js",
26
+ "types": "dist/agtree.d.ts",
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "engines": {
31
+ "node": ">=14"
32
+ },
33
+ "scripts": {
34
+ "build": "yarn clean && yarn build-types && yarn build-txt && yarn rollup --config rollup.config.ts --configPlugin typescript && yarn clean-types",
35
+ "build-txt": "ts-node-esm scripts/build-txt.ts",
36
+ "build-types": "tsc --declaration --emitDeclarationOnly --outdir dist/types",
37
+ "check-types": "tsc --noEmit",
38
+ "clean": "rimraf dist",
39
+ "clean-types": "rimraf dist/types",
40
+ "coverage": "jest --runInBand --coverage",
41
+ "increment": "yarn version --patch --no-git-tag-version",
42
+ "lint": "eslint . --ext .ts",
43
+ "precommit": "yarn check-types && yarn lint && yarn test",
44
+ "test": "jest --runInBand"
45
+ },
46
+ "devDependencies": {
47
+ "@babel/core": "^7.21.8",
48
+ "@babel/preset-env": "^7.21.5",
49
+ "@rollup/plugin-alias": "^5.0.0",
50
+ "@rollup/plugin-babel": "^6.0.3",
51
+ "@rollup/plugin-commonjs": "^25.0.0",
52
+ "@rollup/plugin-json": "^6.0.0",
53
+ "@rollup/plugin-node-resolve": "^15.0.2",
54
+ "@rollup/plugin-terser": "^0.4.3",
55
+ "@rollup/plugin-typescript": "^11.1.1",
56
+ "@swc/core": "^1.3.59",
57
+ "@swc/jest": "^0.2.26",
58
+ "@types/clone-deep": "^4.0.1",
59
+ "@types/jest": "^29.5.1",
60
+ "@types/node": "^20.2.3",
61
+ "@types/semver": "^7.5.0",
62
+ "@typescript-eslint/eslint-plugin": "^5.59.7",
63
+ "@typescript-eslint/parser": "^5.59.7",
64
+ "eslint": "^8.41.0",
65
+ "eslint-config-airbnb-typescript": "^17.0.0",
66
+ "eslint-plugin-import": "^2.27.5",
67
+ "eslint-plugin-import-newlines": "^1.3.1",
68
+ "eslint-plugin-jsdoc": "^44.2.5",
69
+ "jest": "^29.5.0",
70
+ "jsdoc": "^4.0.2",
71
+ "rimraf": "^5.0.1",
72
+ "rollup": "^3.23.0",
73
+ "rollup-plugin-dts": "^5.3.0",
74
+ "rollup-plugin-node-externals": "^6.0.1",
75
+ "rollup-plugin-polyfill-node": "^0.12.0",
76
+ "ts-jest": "^29.1.0",
77
+ "ts-node": "^10.9.1",
78
+ "typescript": "^5.0.4"
79
+ },
80
+ "dependencies": {
81
+ "@adguard/ecss-tree": "^1.0.8",
82
+ "clone-deep": "^4.0.1",
83
+ "json5": "^2.2.1",
84
+ "semver": "^7.5.1",
85
+ "tldts": "^5.7.112"
86
+ }
87
+ }