-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 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": "@ghostery/trackerdb",
"version": "1.0.745",
"description": "Ghostery Tracker Database",
"type": "module",
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup && npm run export",
"test": "node test/index.js",
"lint": "eslint --ext .js,.ts .",
"lint-fix": "eslint --fix --ext .js,.ts .",
"update-docs": "node scripts/update-docs.js",
"export": "npm run export-json && npm run export-engine && npm run export-sql && npm run export-txt",
"export-sql": "node scripts/export-sql/index.js",
"export-engine": "node scripts/export-engine/index.js",
"export-json": "node scripts/export-json/index.js",
"export-txt": "node scripts/export-txt/index.js"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"bin": {
"trackerdb": "./cli.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ghostery/trackerdb.git"
},
"author": "Ghostery GmbH.",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/ghostery/trackerdb/issues"
},
"homepage": "https://github.com/ghostery/trackerdb#readme",
"engines": {
"node": ">=20.0"
},
"dependencies": {
"@ghostery/adblocker": "^2.14.1",
"enolib": "^0.8.2",
"iso-3166-1-alpha-2": "^1.0.2",
"tldts-experimental": "^7.0.23"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"better-sqlite3": "^12.6.2",
"chalk": "5.6.2",
"ejs": "4.0.1",
"eslint": "10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.56.0"
}
}