-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.44 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
{
"name": "TinyDefender",
"version": "1.0.00",
"description": "Superset of Tiny Blocker to block ads and creepy trackers with crazy speed",
"author": "sanatg",
"license": "GPL-3.0",
"scripts": {
"clean": "rm -rfv build *.bundle.js *.map web-ext-artifacts engine.bin",
"lint": "tslint --config tslint.json '*.ts'",
"bundle": "rollup --config rollup.config.ts",
"prebundle": "node generate-engine.js",
"watch": "rollup --config rollup.config.ts --watch",
"start:firefox": "web-ext run --source-dir='.'",
"start:chromium": "web-ext run --source-dir='.' --target chromium",
"ext:lint": "web-ext lint --ignore-files update-nightly.sh node_modules firefox",
"ext:build": "web-ext build --overwrite-dest --ignore-files update-nightly.sh node_modules firefox",
"preext:build": "yarn bundle"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^8.1.1",
"node-fetch": "^2.6.1",
"rollup": "^2.38.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"web-ext": "^5.5.0"
},
"dependencies": {
"@cliqz/adblocker": "^1.22.2",
"@cliqz/adblocker-webextension": "^1.20.2",
"@cliqz/adblocker-webextension-cosmetics": "^1.20.2",
"@remusao/badger": "^1.2.2",
"idb-keyval": "^5.0.2",
"webextension-polyfill-ts": "^0.25.0"
}
}