forked from ghostery/trackerdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.03 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
{
"name": "@ghostery/trackerdb",
"version": "1.0.942",
"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 .",
"lint-patterns": "node lint.js --check",
"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.17.3",
"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.9.1",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"better-sqlite3": "12.10.0",
"chalk": "5.6.2",
"ejs": "6.0.1",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"globals": "17.6.0",
"prettier": "3.8.3",
"tsx": "4.22.3",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0"
}
}