mirror of
https://github.com/younesaassila/ttv-lol-pro.git
synced 2025-04-29 22:14:27 +02:00
65 lines
2.2 KiB
JSON
65 lines
2.2 KiB
JSON
{
|
|
"name": "ttv-lol-pro",
|
|
"version": "2.1.4",
|
|
"description": "TTV LOL PRO removes most livestream ads from Twitch.",
|
|
"@parcel/bundler-default": {
|
|
"minBundles": 10000000,
|
|
"minBundleSize": 3000,
|
|
"maxParallelRequests": 20
|
|
},
|
|
"targets": {
|
|
"webext-dev": {
|
|
"sourceMap": {
|
|
"inline": true,
|
|
"inlineSources": true
|
|
}
|
|
},
|
|
"webext-prod": {}
|
|
},
|
|
"browserslist": "> 0.5%, last 2 versions, not dead",
|
|
"scripts": {
|
|
"predev:firefox": "npm run clean && shx cp src/manifest.firefox.json src/manifest.json",
|
|
"predev:chromium": "npm run clean && shx cp src/manifest.chromium.json src/manifest.json",
|
|
"dev:firefox": "parcel src/manifest.json --host localhost --target webext-dev --no-hmr",
|
|
"dev:chromium": "parcel src/manifest.json --host localhost --target webext-dev --no-hmr",
|
|
"lint": "prettier --check .",
|
|
"lint:fix": "prettier --write .",
|
|
"prebuild:firefox": "npm run clean && shx cp src/manifest.firefox.json src/manifest.json",
|
|
"prebuild:chromium": "npm run clean && shx cp src/manifest.chromium.json src/manifest.json",
|
|
"build:firefox": "parcel build src/manifest.json --target webext-prod --no-source-maps",
|
|
"build:chromium": "parcel build src/manifest.json --target webext-prod --no-source-maps",
|
|
"clean": "shx rm -rf .parcel-cache ; shx rm -rf dist ; shx --silent rm src/manifest.json ; exit 0"
|
|
},
|
|
"keywords": [
|
|
"twitch",
|
|
"web-extension",
|
|
"adblocker"
|
|
],
|
|
"author": "TTV-LOL (https://github.com/TTV-LOL)",
|
|
"contributors": [
|
|
"Younes Aassila (https://github.com/younesaassila)"
|
|
],
|
|
"license": "GPL-3.0",
|
|
"dependencies": {
|
|
"bowser": "^2.11.0",
|
|
"ip": "^1.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"@parcel/config-webextension": "^2.9.3",
|
|
"@types/chrome": "^0.0.243",
|
|
"@types/ip": "^1.1.0",
|
|
"@types/webextension-polyfill": "^0.10.1",
|
|
"buffer": "^6.0.3",
|
|
"os-browserify": "^0.3.0",
|
|
"parcel": "^2.9.3",
|
|
"postcss": "^8.4.27",
|
|
"prettier": "2.8.8",
|
|
"prettier-plugin-css-order": "^1.3.1",
|
|
"prettier-plugin-organize-imports": "^3.2.3",
|
|
"shx": "^0.3.4",
|
|
"typescript": "^5.1.6",
|
|
"webextension-polyfill": "^0.10.0"
|
|
},
|
|
"private": true
|
|
}
|