freetube/package.json

125 lines
4.6 KiB
JSON
Raw Permalink Normal View History

2020-02-16 18:30:00 +00:00
{
"name": "freetube",
"productName": "FreeTube",
"description": "A private YouTube client",
2022-08-12 01:36:57 +00:00
"version": "0.17.1",
"license": "AGPL-3.0-or-later",
"main": "./dist/main.js",
"private": true,
2020-02-16 18:30:00 +00:00
"author": {
"name": "PrestonN",
"email": "FreeTubeApp@protonmail.com",
"url": "https://github.com/FreeTubeApp/FreeTube"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FreeTubeApp/FreeTube.git"
},
2020-02-16 18:30:00 +00:00
"bugs": {
"url": "https://github.com/FreeTubeApp/FreeTube/issues"
},
"scripts": {
"build": "run-s rebuild:electron pack build-release",
"build:arm64": "run-s rebuild:electron pack build-release:arm64",
"build:arm32": "run-s rebuild:electron pack build-release:arm32",
"build-release": "node _scripts/build.js",
"build-release:arm64": "node _scripts/build.js arm64",
"build-release:arm32": "node _scripts/build.js arm32",
"clean": "rimraf build/ static/dashFiles/ dist/ static/storyboards/",
"debug": "run-s rebuild:electron debug-runner",
"debug-runner": "node _scripts/dev-runner.js --remote-debug",
"dev": "run-s rebuild:electron dev-runner",
"dev:web": "node _scripts/dev-runner.js --web",
"dev-runner": "node _scripts/dev-runner.js",
"lint-fix": "eslint --fix --ext .js,.vue ./",
"lint": "eslint --ext .js,.vue ./",
"pack": "run-p pack:main pack:renderer pack:workers",
"pack:main": "webpack --mode=production --node-env=production --config _scripts/webpack.main.config.js",
"pack:renderer": "webpack --mode=production --node-env=production --config _scripts/webpack.renderer.config.js",
"pack:web": "webpack --mode=production --node-env=production --config _scripts/webpack.web.config.js",
"pack:workers": "webpack --mode=production --node-env=production --config _scripts/webpack.workers.config.js",
"postinstall": "yarn run --silent rebuild:electron",
"prettier": "prettier --write \"{src,_scripts}/**/*.{js,vue}\"",
"rebuild:electron": "electron-builder install-app-deps",
"release": "run-s test build",
"ci": "yarn install --silent --frozen-lockfile"
},
2020-02-16 18:30:00 +00:00
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/vue-fontawesome": "^2.0.8",
"@freetube/youtube-chat": "^1.1.2",
"@freetube/yt-comment-scraper": "^6.2.0",
2022-09-13 14:13:40 +00:00
"@freetube/yt-trending-scraper": "^3.1.1",
2021-05-15 19:08:41 +00:00
"@silvermine/videojs-quality-selector": "^1.2.5",
2022-09-09 01:10:10 +00:00
"autolinker": "^4.0.0",
"browserify": "^17.0.0",
"electron-context-menu": "^3.5.0",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"lodash.debounce": "^4.0.8",
2020-02-16 18:30:00 +00:00
"lodash.isequal": "^4.5.0",
"marked": "^4.1.1",
"nedb-promises": "^6.2.1",
2021-03-04 21:51:56 +00:00
"opml-to-json": "^1.0.1",
"process": "^0.11.10",
2021-08-03 21:18:23 +00:00
"socks-proxy-agent": "^6.0.0",
2022-05-14 21:37:17 +00:00
"video.js": "7.18.1",
"videojs-contrib-quality-levels": "^2.1.0",
"videojs-http-source-selector": "^1.1.6",
Improving touch input by bringing in `videojs-mobile-ui` (#2719) * Adding videojs-mobile-ui as a dependency - Using the beta because it fixes an issue with multiple version of videojs loading at once. This is related to MarmadileManteater#56. * Mapping defaultSkipInterval to seekSeconds * Adding CSS to prevent showing duplicate buttons - Added a new variable `usingTouch` to selectively hide the existing `vjs-big-play-button` when the `touch-overlay` is visible. * Renaming CSS class to something more specific * Adding text-shadow behind play / pause button This should make it more visually distinct against a light or colorful background. * Enabling touch-overlay anytime a touch is detected Disabling it whenever mouse input is detected The default behavior of `videojs-mobile-ui` is to only work in Android and iOS, but by forcing the touch behavior to be enabled and selectively showing it only when touch input is detected, it should work on any device with touch input even if the browser doesn't detect that it is running in Android or iOS. * Removing unnecessary code * Removing unintentionally leftover variable * Removing an unnecessary assignment Adding comments to explain why a flag called `forceForTesting` is set to true Disabling the `lockOnRotate` flag. * Moving this flag and wrapper class * Adding whitespace * Making my comment a little more consistent * Changing the punctuation of a comment * Adjusting the CSS to fix a firefox discrepancy * Adding a check for mobile firefox For whatever reason, mobile firefox sometimes triggers onmouseover when a touch occurs, and this is unwanted behavior. * Adding a drop-shadow to the ff and rw icons This should make them easier to see on top of light videos * Hiding the mobile play button according to setting - Added CSS to hide the videojs-mobile-ui play button when the `Display Play Button In Video Player` setting is disabled. * Replacing long computed string with class binding Co-authored-by: absidue <48293849+absidue@users.noreply.github.com> * Adding newline at the end of videoJS.css Co-authored-by: absidue <48293849+absidue@users.noreply.github.com>
2022-10-24 17:49:52 +00:00
"videojs-mobile-ui": "^0.8.0",
"videojs-overlay": "^2.1.4",
"videojs-vtt-thumbnails-freetube": "0.0.15",
"vue": "^2.7.13",
"vue-i18n": "^8.27.2",
2021-01-11 20:32:35 +00:00
"vue-observe-visibility": "^1.0.0",
"vue-router": "^3.6.5",
2021-03-03 03:51:01 +00:00
"vuex": "^3.6.2",
"youtube-suggest": "^1.2.0",
"yt-channel-info": "^3.1.1",
"yt-dash-manifest-generator": "1.1.0",
2022-09-06 00:44:56 +00:00
"ytdl-core": "^4.11.2",
"ytpl": "^2.3.0",
"ytsr": "^3.8.0"
2020-02-16 18:30:00 +00:00
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.10",
2020-03-16 18:09:10 +00:00
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"electron": "^21.1.1",
"electron-builder": "^23.6.0",
2021-08-03 21:18:23 +00:00
"eslint": "^7.32.0",
2021-05-15 20:18:20 +00:00
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
2021-05-15 20:18:20 +00:00
"eslint-plugin-promise": "^5.1.0",
2020-11-24 02:53:49 +00:00
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.6.0",
2021-08-03 21:18:23 +00:00
"html-webpack-plugin": "^5.3.2",
"js-yaml": "^4.1.0",
2022-09-13 01:28:36 +00:00
"json-minimizer-webpack-plugin": "^4.0.0",
"lefthook": "^1.1.2",
"mini-css-extract-plugin": "^2.6.1",
2020-02-16 18:30:00 +00:00
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
2020-02-16 18:30:00 +00:00
"tree-kill": "1.2.2",
"vue-devtools": "^5.1.4",
"vue-eslint-parser": "^9.1.0",
"vue-loader": "^15.10.0",
2022-09-04 11:40:53 +00:00
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
2020-02-16 18:30:00 +00:00
}