-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpackage.json
50 lines (50 loc) · 1.84 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
{
"name": "@ghostery/extension-manifest-v3",
"private": true,
"version": "10.2.9",
"type": "module",
"scripts": {
"postinstall": "npm run download-engines && npm run download-whotracksme-bloomfilter",
"build": "node scripts/build.js",
"start": "npm run build -- --watch",
"download-engines": "node scripts/download-engines/index.js",
"download-whotracksme-bloomfilter": "node scripts/download-whotracksme-bloomfilter.js",
"licenses": "license-report --config=../.license-report-config.json > dist/licenses.html",
"lint": "eslint src/",
"test": "npm run lint",
"locales.ui": "hybrids extract -c --format=chrome.i18n ../node_modules/@ghostery/ui ./src/_locales/en/messages.json",
"locales.src": "hybrids extract -c --format=chrome.i18n ./src ./src/_locales/en/messages.json",
"locales": "npm run locales.ui && npm run locales.src",
"xcode-export-locales": "rm -rf ./xcode/en.xcloc && xcodebuild -exportLocalizations -project ./xcode/Ghostery.xcodeproj -localizationPath ./xcode",
"release": "./scripts/release.sh",
"package": "./scripts/package.sh"
},
"author": {
"name": "Ghostery GmbH",
"email": "[email protected]",
"url": "https://www.ghostery.com"
},
"license": "MPL-2.0",
"devDependencies": {
"shelljs": "^0.8.5",
"vite": "^4.5.2",
"web-ext": "^7.11.0"
},
"dependencies": {
"@cliqz/adblocker": "^1.26.12",
"@cliqz/adblocker-webextension-cosmetics": "^1.26.12",
"@duckduckgo/autoconsent": "^9.6.0",
"@ghostery/libs": "^1.0.0",
"@ghostery/trackers-preview": "^1.0.0",
"@ghostery/ui": "^1.0.0",
"@github/relative-time-element": "^4.3.0",
"@whotracksme/webextension-packages": "^5.0.2",
"hybrids": "^8.2.5",
"idb": "^7.1.1",
"jwt-decode": "^4.0.0",
"tldts-experimental": "^6.0.19"
},
"webExt": {
"sourceDir": "./dist/"
}
}