-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
67 lines (67 loc) · 2.26 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ttv-lol-pro",
"version": "2.3.10",
"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 .",
"type-check": "tsc --noEmit",
"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": "Younes Aassila (https://github.com/younesaassila)",
"contributors": [
"Marc Gómez (https://github.com/zGato)"
],
"license": "GPL-3.0",
"dependencies": {
"bowser": "^2.11.0",
"ip-address": "^9.0.5",
"m3u8-parser": "^7.2.0"
},
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@types/chrome": "^0.0.271",
"@types/jsbn": "^1.2.33",
"@types/node": "^20.16.5",
"@types/webextension-polyfill": "^0.12.1",
"buffer": "^6.0.3",
"os-browserify": "^0.3.0",
"parcel": "^2.12.0",
"postcss": "^8.4.47",
"prettier": "2.8.8",
"prettier-plugin-css-order": "^1.3.1",
"prettier-plugin-organize-imports": "^3.2.4",
"shx": "^0.3.4",
"typescript": "^5.6.2",
"webextension-polyfill": "^0.12.0"
},
"private": true
}