SponsorBlock/package.json

102 lines
3.7 KiB
JSON
Raw Normal View History

2019-12-30 01:24:05 +01:00
{
"name": "sponsorblock",
"version": "1.0.0",
"description": "",
"main": "background.js",
2020-02-04 05:10:04 +01:00
"dependencies": {
"content-scripts-register-polyfill": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
2020-02-04 05:10:04 +01:00
},
"overrides": {
"content-scripts-register-polyfill": {
"webext-content-scripts": "v2.5.5"
}
},
2019-12-30 01:24:05 +01:00
"devDependencies": {
2023-03-08 04:11:28 +01:00
"@types/chrome": "^0.0.220",
"@types/firefox-webext-browser": "^111.0.0",
"@types/jest": "^29.4.0",
2023-03-08 04:11:28 +01:00
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/selenium-webdriver": "^4.1.13",
2022-10-07 23:19:36 +02:00
"@types/wicg-mediasession": "^1.1.4",
2023-03-08 04:11:28 +01:00
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chromedriver": "^110.0.0",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
2023-03-08 04:11:28 +01:00
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.32.2",
"fork-ts-checker-webpack-plugin": "^7.3.0",
2023-03-08 04:11:28 +01:00
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"rimraf": "^4.3.1",
"schema-utils": "^4.0.0",
2023-03-08 04:11:28 +01:00
"selenium-webdriver": "^4.8.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
2022-07-25 22:10:10 +02:00
"ts-node": "^10.9.1",
"typescript": "4.9",
"web-ext": "^8.2.0",
"webpack": "^5.94.0",
2022-07-13 05:47:22 +02:00
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
2019-12-30 01:24:05 +01:00
},
"scripts": {
2020-02-04 05:10:04 +01:00
"web-run": "npm run web-run:chrome",
2024-09-06 04:37:33 +02:00
"web-sign": "web-ext sign --channel unlisted -s dist",
"web-run:firefox": "cd dist && web-ext run --start-url https://addons.mozilla.org/firefox/addon/ublock-origin/",
"web-run:firefox-android": "cd dist && web-ext run -t firefox-android --firefox-apk org.mozilla.fenix",
2020-02-04 05:10:04 +01:00
"web-run:chrome": "cd dist && web-ext run --start-url https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm -t chromium",
2020-02-04 07:32:58 +01:00
"build": "npm run build:chrome",
"build:chrome": "webpack --env browser=chrome --config webpack/webpack.prod.js",
"build:firefox": "webpack --env browser=firefox --config webpack/webpack.prod.js",
"build:safari": "webpack --env browser=safari --config webpack/webpack.prod.js",
"build:edge": "webpack --env browser=edge --config webpack/webpack.prod.js",
2020-02-19 18:57:22 +01:00
"build:dev": "npm run build:dev:chrome",
"build:dev:chrome": "webpack --env browser=chrome --config webpack/webpack.dev.js",
"build:dev:firefox": "webpack --env browser=firefox --config webpack/webpack.dev.js",
2020-02-04 08:14:30 +01:00
"build:watch": "npm run build:watch:chrome",
"build:watch:chrome": "webpack --env browser=chrome --config webpack/webpack.dev.js --watch",
"build:watch:firefox": "webpack --env browser=firefox --config webpack/webpack.dev.js --watch",
"ci:invidious": "ts-node ci/generateList.ts",
2020-02-19 18:57:22 +01:00
"dev": "npm run build:dev && concurrently \"npm run web-run\" \"npm run build:watch\"",
"dev:firefox": "npm run build:dev:firefox && concurrently \"npm run web-run:firefox\" \"npm run build:watch:firefox\"",
"dev:firefox-android": "npm run build:dev:firefox && concurrently \"npm run web-run:firefox-android\" \"npm run build:watch:firefox\"",
2020-01-29 04:16:48 +01:00
"clean": "rimraf dist",
2021-07-31 05:36:31 +02:00
"test": "npm run build:chrome && npx jest",
2021-07-31 05:37:13 +02:00
"test-without-building": "npx jest",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
2019-12-30 01:24:05 +01:00
},
"engines": {
"node": ">=16"
},
"funding": [
{
"type": "individual",
2022-06-15 19:02:53 +02:00
"url": "https://sponsor.ajay.app/donate"
},
{
"type": "github",
"url": "https://github.com/sponsors/ajayyy-org"
},
{
"type": "patreon",
"url": "https://www.patreon.com/ajayyy"
},
{
"type": "individual",
"url": "https://paypal.me/ajayyy"
}
],
2019-12-30 01:24:05 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/ajayyy/SponsorBlock.git"
},
"author": "Ajay Ramachandran",
2024-01-12 19:14:08 +01:00
"license": "GPL-3.0",
2019-12-30 01:24:05 +01:00
"private": true
}