SponsorBlock/package.json

76 lines
3.2 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": {
2020-02-25 06:38:03 +01:00
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
2021-07-30 21:04:05 +02:00
"@types/selenium-webdriver": "^4.0.15",
2020-02-25 06:38:03 +01:00
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"concurrently": "^5.1.0",
2021-05-11 06:27:18 +02:00
"react": "^17.0.2",
"react-dom": "^17.0.2"
2020-02-04 05:10:04 +01:00
},
2019-12-30 01:24:05 +01:00
"devDependencies": {
2020-01-29 04:16:48 +01:00
"@types/chrome": "0.0.91",
"@types/firefox-webext-browser": "70.0.1",
2020-08-13 23:32:38 +02:00
"@types/jest": "^24.0.23",
2020-01-29 04:16:48 +01:00
"@types/jquery": "^3.3.31",
2020-12-12 22:55:04 +01:00
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
2021-07-30 21:04:05 +02:00
"chromedriver": "^92.0.0",
"copy-webpack-plugin": "^6.4.1",
2020-12-12 22:55:04 +01:00
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5",
2021-07-04 21:01:33 +02:00
"jest": "^27.0.6",
2020-01-29 04:16:48 +01:00
"rimraf": "^3.0.0",
2021-07-30 21:04:05 +02:00
"selenium-webdriver": "^4.0.0-beta.4",
2021-07-04 21:01:33 +02:00
"ts-jest": "^27.0.3",
2020-01-29 04:16:48 +01:00
"ts-loader": "^6.2.1",
"ts-node": "^10.4.0",
2021-07-04 21:01:33 +02:00
"typescript": "~4.3",
2021-07-04 20:35:46 +02:00
"web-ext": "^6.2.0",
"webpack": "~4.46.0",
2020-01-29 04:16:48 +01:00
"webpack-cli": "~3.3.10",
"webpack-merge": "~4.2.2"
2019-12-30 01:24:05 +01:00
},
"scripts": {
2020-02-04 05:10:04 +01:00
"web-run": "npm run web-run:chrome",
2020-09-12 00:08:44 +02:00
"web-sign": "web-ext sign -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",
2022-01-14 22:07:24 +01:00
"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",
2020-02-04 07:32:58 +01:00
"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/invidiousCI.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
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajayyy/SponsorBlock.git"
},
"author": "Ajay Ramachandran",
2021-12-01 23:00:04 +01:00
"license": "LGPL-3.0-or-later",
2019-12-30 01:24:05 +01:00
"private": true
}