diff options
author | ManeraKai <manerakai@protonmail.com> | 2022-07-27 17:44:04 +0200 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2022-07-27 17:44:04 +0200 |
commit | a9a7dba5a329eb17e23ba08802406a4e2e2cb836 (patch) | |
tree | 2cb69c855b36e82128a00e5895d5f5409d5e0a5e /package.json | |
parent | Merge branch 'BobIsMyManager-librex' (diff) | |
parent | , (diff) | |
download | libredirect-a9a7dba5a329eb17e23ba08802406a4e2e2cb836.zip |
Merge pull request 'Squashed a few bugs' (#10) from BobIsMyManager/libredirect:master into master
Reviewed-on: https://codeberg.org/LibRedirect/libredirect/pulls/10
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 58 |
1 files changed, 31 insertions, 27 deletions
diff --git a/package.json b/package.json index 2f8f9abf..e6214c85 100644 --- a/package.json +++ b/package.json @@ -1,29 +1,33 @@ { - "name": "libredirect", - "description": "Redirects YouTube, Twitter, Instagram and more to privacy friendly frontends.", - "engines": { - "node": ">=16.13.1", - "npm": ">=8.1.2" - }, - "scripts": { - "start": "web-ext run --browser-console --source-dir ./src/", - "build": "web-ext build --overwrite-dest --source-dir ./src/", - "test": "web-ext lint --source-dir ./src/ || true" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/LibRedirect/LibRedirect.git" - }, - "author": "LibRedirect", - "license": "GPL-3.0-only", - "bugs": { - "url": "https://github.com/LibRedirect/LibRedirect/issues" - }, - "homepage": "https://github.com/LibRedirect/LibRedirect", - "devDependencies": { - "web-ext": "^6.7.0" - }, - "dependencies": { - "buffer": "^6.0.3" - } + "name": "libredirect", + "description": "Redirects YouTube, Twitter, Instagram and more to privacy friendly frontends.", + "engines": { + "node": ">=16.13.1", + "npm": ">=8.1.2" + }, + "scripts": { + "start": "web-ext run --browser-console --source-dir ./src/", + "build": "web-ext build --overwrite-dest --source-dir ./src/", + "test": "web-ext lint --source-dir ./src/ || true", + "pug": "pug ./src/pages/options/*.pug ./src/pages/popup/ -P -w", + "prettier": "npx prettier --write .", + "instances": "python3 src/instances/get_instances.py; git update-index --assume-unchanged src/instances/blacklist.json src/instances/data.json" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/LibRedirect/LibRedirect.git" + }, + "author": "LibRedirect", + "license": "GPL-3.0-only", + "bugs": { + "url": "https://github.com/LibRedirect/LibRedirect/issues" + }, + "homepage": "https://github.com/LibRedirect/LibRedirect", + "devDependencies": { + "prettier": "2.7.1", + "web-ext": "^6.7.0" + }, + "dependencies": { + "buffer": "^6.0.3" + } } |