-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "ghostery-newtab-extension",
"version": "1.0.3",
"description": "Ghostery Private Browser New Tab Page",
"license": "MPL-2.0",
"type": "module",
"scripts": {
"postinstall": "patch-package",
"build": "node ./scripts/build.js",
"locales": "hybrids extract -c --format=chrome.i18n ./src ./src/public/_locales/en/messages.json",
"web-ext": "web-ext run --pref extensions.experiments.enabled=true --pref security.sandbox.content.level=2 --no-reload",
"start": "npm run build -- --watch",
"release": "npm run build && web-ext build"
},
"webExt": {
"sourceDir": "./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghostery/ghostery-newtab-extension.git"
},
"bugs": {
"url": "https://github.com/ghostery/ghostery-newtab-extension/issues"
},
"homepage": "https://github.com/ghostery/ghostery-newtab-extension#readme",
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"patch-package": "^8.0.0",
"vite": "^4.4.9",
"web-ext": "^7.11.0"
},
"dependencies": {
"hybrids": "^8.2.5"
}
}