-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
65 lines (65 loc) · 1.92 KB
/
package.json
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
{
"name": "@ghostery/trackerdb",
"version": "1.0.399",
"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 --ignore-path .gitignore --ext .js,.ts .",
"lint-fix": "eslint --fix --ignore-path .gitignore --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": ">=18.0"
},
"dependencies": {
"@ghostery/adblocker": "2.0.2",
"better-sqlite3": "^11.5.0",
"enolib": "^0.8.2",
"iso-3166-1-alpha-2": "^1.0.2",
"tldts-experimental": "^6.1.57"
},
"devDependencies": {
"@types/node": "22.8.2",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"chalk": "5.3.0",
"ejs": "3.1.10",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"typescript": "5.6.3"
}
}