-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.94 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.94 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
76
{
"name": "@ghostery/urlfilter2dnr",
"version": "2.0.4",
"author": "Ghostery GmbH",
"description": "Converts urlfilters to DNR format",
"license": "GPL-3.0",
"type": "module",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ghostery/urlfilter2dnr.git"
},
"scripts": {
"build": "tshy",
"build:page": "node ./scripts/page/build.js",
"update-mappings": "node ./scripts/update.js",
"serve": "node --watch ./scripts/page/serve.js",
"test.unit": "mocha 'test/unit/**/*.spec.{ts,js}'",
"test.e2e": "playwright test test/e2e/index.spec.js",
"lint": "eslint",
"release": "auto shipit -v",
"prerelease": "npm run build"
},
"dependencies": {
"@adguard/re2-wasm": "^1.2.0",
"@adguard/scriptlets": "^2.2.16",
"@adguard/tsurlfilter": "^4.0.2",
"@eyeo/webext-ad-filtering-solution": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@ghostery/adblocker": "^2.14.1",
"@ghostery/trackerdb": "^1.0.743",
"@playwright/test": "^1.58.2",
"@types/mocha": "^10.0.10",
"auto": "^11.3.6",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"tshy": "^4.1.1",
"tsimp": "^2.0.12",
"typescript-eslint": "^8.57.2",
"yaml": "^2.8.2"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"tshy": {
"exports": {
".": "./src/index.ts"
}
}
}