-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 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
{
"name": "@blockingmachine/cli",
"version": "1.0.0-beta.7",
"description": "Generates comprehensive ad-blocking/privacy filter lists in the command line.",
"homepage": "https://github.com/greigh/BlockingMachin-CLI#readme",
"license": "BSD-3-Clause",
"type": "module",
"engines": {
"node": ">=14.16"
},
"scripts": {
"build": "tsc --skipLibCheck && chmod +x dist/cli.js",
"start": "node dist/cli.js",
"dev": "tsc -w",
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.ts\"",
"test": "node --experimental-vm-modules ../../node_modules/.bin/jest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@blockingmachine/core": "^1.0.0-beta.7",
"@ghostery/trackerdb": "^1.0.690",
"axios": "^1.13.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"cosmiconfig": "^9.0.0",
"dotenv": "^17.2.3",
"fs-extra": "^11.3.2",
"mongoose": "^9.0.1",
"node-fetch": "^3.3.2",
"progress": "^2.0.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^24.10.1",
"@types/progress": "^2.0.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.9.3"
},
"build": {
"publish": {
"provider": "github",
"owner": "greigh",
"repo": "Blockingmachine-CLI"
}
},
"exports": {
".": "./dist/index.js",
"./export": "./dist/lib/export.js"
},
"bin": {
"blockingmachine": "./dist/cli.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"scope": "@blockingmachine"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}