2020-02-16 19:30:00 +01:00
|
|
|
{
|
2021-07-02 18:54:39 +02:00
|
|
|
"name": "freetube",
|
|
|
|
"productName": "FreeTube",
|
|
|
|
"description": "A private YouTube client",
|
2023-10-09 03:04:47 +02:00
|
|
|
"version": "0.19.1",
|
2021-07-02 18:54:39 +02:00
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"main": "./dist/main.js",
|
|
|
|
"private": true,
|
2020-02-16 19:30:00 +01:00
|
|
|
"author": {
|
|
|
|
"name": "PrestonN",
|
|
|
|
"email": "FreeTubeApp@protonmail.com",
|
|
|
|
"url": "https://github.com/FreeTubeApp/FreeTube"
|
|
|
|
},
|
2021-07-02 18:54:39 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/FreeTubeApp/FreeTube.git"
|
|
|
|
},
|
2020-02-16 19:30:00 +01:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/FreeTubeApp/FreeTube/issues"
|
|
|
|
},
|
2021-07-02 18:54:39 +02:00
|
|
|
"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",
|
2022-07-14 16:43:07 +02:00
|
|
|
"clean": "rimraf build/ static/dashFiles/ dist/ static/storyboards/",
|
2021-07-02 18:54:39 +02:00
|
|
|
"debug": "run-s rebuild:electron debug-runner",
|
|
|
|
"debug-runner": "node _scripts/dev-runner.js --remote-debug",
|
|
|
|
"dev": "run-s rebuild:electron dev-runner",
|
2022-10-18 14:50:32 +02:00
|
|
|
"dev:web": "node _scripts/dev-runner.js --web",
|
2021-07-02 18:54:39 +02:00
|
|
|
"dev-runner": "node _scripts/dev-runner.js",
|
2023-05-20 15:07:04 +02:00
|
|
|
"get-instances": "node _scripts/getInstances.js",
|
2023-07-01 16:08:09 +02:00
|
|
|
"get-regions": "node _scripts/getRegions.mjs",
|
2023-09-14 02:22:33 +02:00
|
|
|
"lint-all": "run-p lint lint-json",
|
|
|
|
"lint": "run-p eslint-lint lint-style",
|
|
|
|
"lint-fix": "run-p eslint-lint-fix lint-style-fix",
|
|
|
|
"eslint-lint": "eslint --ext .js,.vue ./",
|
|
|
|
"eslint-lint-fix": "eslint --fix --ext .js,.vue ./",
|
2023-01-03 19:19:41 +01:00
|
|
|
"lint-json": "eslint --ext .json ./",
|
2023-09-14 02:22:33 +02:00
|
|
|
"lint-style": "stylelint \"**/*.{css,scss}\"",
|
|
|
|
"lint-style-fix": "stylelint --fix \"**/*.{css,scss}\"",
|
2023-05-13 13:10:32 +02:00
|
|
|
"lint-yml": "eslint --ext .yml,.yaml ./",
|
2022-11-06 09:17:33 +01:00
|
|
|
"pack": "run-p pack:main pack:renderer",
|
2021-07-02 18:54:39 +02:00
|
|
|
"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",
|
2022-10-20 12:33:00 +02:00
|
|
|
"postinstall": "yarn run --silent rebuild:electron",
|
2022-05-31 22:15:44 +02:00
|
|
|
"prettier": "prettier --write \"{src,_scripts}/**/*.{js,vue}\"",
|
2021-07-02 18:54:39 +02:00
|
|
|
"rebuild:electron": "electron-builder install-app-deps",
|
|
|
|
"release": "run-s test build",
|
2022-10-20 12:33:00 +02:00
|
|
|
"ci": "yarn install --silent --frozen-lockfile"
|
2021-07-02 18:54:39 +02:00
|
|
|
},
|
2020-02-16 19:30:00 +01:00
|
|
|
"dependencies": {
|
2023-12-04 14:17:00 +01:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.5.1",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.5.1",
|
2023-01-30 22:48:38 +01:00
|
|
|
"@fortawesome/vue-fontawesome": "^2.0.10",
|
2024-01-15 17:10:37 +01:00
|
|
|
"@seald-io/nedb": "^4.0.4",
|
2023-11-20 14:25:45 +01:00
|
|
|
"@silvermine/videojs-quality-selector": "^1.3.1",
|
2022-09-09 03:10:10 +02:00
|
|
|
"autolinker": "^4.0.0",
|
2022-12-05 11:40:21 +01:00
|
|
|
"electron-context-menu": "^3.6.1",
|
2020-06-02 04:42:29 +02:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2024-03-11 12:16:49 +01:00
|
|
|
"marked": "^12.0.1",
|
2023-04-12 15:39:28 +02:00
|
|
|
"path-browserify": "^1.0.1",
|
2022-10-06 16:47:47 +02:00
|
|
|
"process": "^0.11.10",
|
2024-03-04 13:06:06 +01:00
|
|
|
"swiper": "^11.0.7",
|
2023-07-25 23:24:09 +02:00
|
|
|
"video.js": "7.21.5",
|
2022-12-26 14:49:26 +01:00
|
|
|
"videojs-contrib-quality-levels": "^3.0.0",
|
2020-02-18 21:59:01 +01:00
|
|
|
"videojs-http-source-selector": "^1.1.6",
|
2022-10-24 19:49:52 +02:00
|
|
|
"videojs-mobile-ui": "^0.8.0",
|
2023-06-19 12:54:37 +02:00
|
|
|
"videojs-overlay": "^3.1.0",
|
2020-09-01 12:04:54 +02:00
|
|
|
"videojs-vtt-thumbnails-freetube": "0.0.15",
|
2023-12-25 17:01:18 +01:00
|
|
|
"vue": "^2.7.16",
|
2022-12-05 11:40:36 +01:00
|
|
|
"vue-i18n": "^8.28.2",
|
2021-01-11 21:32:35 +01:00
|
|
|
"vue-observe-visibility": "^1.0.0",
|
2022-09-16 16:49:27 +02:00
|
|
|
"vue-router": "^3.6.5",
|
2021-03-03 04:51:01 +01:00
|
|
|
"vuex": "^3.6.2",
|
2024-02-23 20:51:18 +01:00
|
|
|
"youtubei.js": "^9.1.0"
|
2020-02-16 19:30:00 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-03-04 13:10:10 +01:00
|
|
|
"@babel/core": "^7.24.0",
|
2024-02-05 13:20:11 +01:00
|
|
|
"@babel/eslint-parser": "^7.23.10",
|
2022-09-05 03:29:53 +02:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
2024-03-04 13:10:10 +01:00
|
|
|
"@babel/preset-env": "^7.24.0",
|
2024-02-19 15:03:25 +01:00
|
|
|
"@double-great/stylelint-a11y": "^3.0.2",
|
2023-07-10 22:53:57 +02:00
|
|
|
"babel-loader": "^9.1.3",
|
2024-01-22 20:52:44 +01:00
|
|
|
"copy-webpack-plugin": "^12.0.2",
|
2024-02-05 13:36:51 +01:00
|
|
|
"css-loader": "^6.10.0",
|
2024-01-22 20:52:19 +01:00
|
|
|
"css-minimizer-webpack-plugin": "^6.0.0",
|
2024-03-11 12:15:14 +01:00
|
|
|
"electron": "^29.1.1",
|
2024-03-04 13:04:39 +01:00
|
|
|
"electron-builder": "^24.13.3",
|
2024-02-26 13:55:58 +01:00
|
|
|
"eslint": "^8.57.0",
|
2023-12-04 14:14:44 +01:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2023-06-05 23:59:39 +02:00
|
|
|
"eslint-config-standard": "^17.1.0",
|
2023-12-18 11:51:52 +01:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2024-01-29 23:43:25 +01:00
|
|
|
"eslint-plugin-jsonc": "^2.13.0",
|
2024-01-15 17:11:56 +01:00
|
|
|
"eslint-plugin-n": "^16.6.2",
|
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2023-01-03 19:19:41 +01:00
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
2024-02-12 14:03:57 +01:00
|
|
|
"eslint-plugin-unicorn": "^51.0.1",
|
2024-02-26 13:55:58 +01:00
|
|
|
"eslint-plugin-vue": "^9.22.0",
|
2024-01-29 18:01:12 +01:00
|
|
|
"eslint-plugin-vuejs-accessibility": "^2.2.1",
|
|
|
|
"eslint-plugin-yml": "^1.12.2",
|
2023-12-25 17:01:04 +01:00
|
|
|
"html-webpack-plugin": "^5.6.0",
|
2022-09-24 17:06:50 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2024-01-22 14:50:47 +01:00
|
|
|
"json-minimizer-webpack-plugin": "^5.0.0",
|
2024-03-11 12:17:15 +01:00
|
|
|
"lefthook": "^1.6.5",
|
2024-03-04 13:42:26 +01:00
|
|
|
"mini-css-extract-plugin": "^2.8.1",
|
2020-02-16 19:30:00 +01:00
|
|
|
"npm-run-all": "^4.1.5",
|
2024-03-18 13:13:55 +01:00
|
|
|
"postcss": "^8.4.36",
|
2023-10-02 14:54:13 +02:00
|
|
|
"postcss-scss": "^4.0.9",
|
2023-07-11 18:49:54 +02:00
|
|
|
"prettier": "^2.8.8",
|
2023-10-02 19:16:21 +02:00
|
|
|
"rimraf": "^5.0.5",
|
2024-02-26 13:57:22 +01:00
|
|
|
"sass": "^1.71.1",
|
2024-02-26 14:08:05 +01:00
|
|
|
"sass-loader": "^14.1.1",
|
2024-02-05 13:21:00 +01:00
|
|
|
"stylelint": "^16.2.1",
|
2024-03-18 13:13:55 +01:00
|
|
|
"stylelint-config-sass-guidelines": "^11.1.0",
|
2024-01-02 23:37:39 +01:00
|
|
|
"stylelint-config-standard": "^36.0.0",
|
|
|
|
"stylelint-high-performance-animation": "^1.10.0",
|
|
|
|
"stylelint-use-logical-spec": "^5.0.1",
|
2020-02-16 19:30:00 +01:00
|
|
|
"tree-kill": "1.2.2",
|
2020-07-21 18:45:07 +02:00
|
|
|
"vue-devtools": "^5.1.4",
|
2024-01-29 23:43:25 +01:00
|
|
|
"vue-eslint-parser": "^9.4.2",
|
2022-09-16 16:49:27 +02:00
|
|
|
"vue-loader": "^15.10.0",
|
2024-02-19 17:57:38 +01:00
|
|
|
"webpack": "^5.90.3",
|
2023-06-12 19:11:42 +02:00
|
|
|
"webpack-cli": "^5.1.4",
|
2024-02-25 14:14:30 +01:00
|
|
|
"webpack-dev-server": "^5.0.2",
|
2024-01-22 14:53:36 +01:00
|
|
|
"webpack-watch-external-files-plugin": "^3.0.0",
|
2023-05-13 13:10:32 +02:00
|
|
|
"yaml-eslint-parser": "^1.2.2"
|
2021-07-02 18:54:39 +02:00
|
|
|
}
|
2020-02-16 19:30:00 +01:00
|
|
|
}
|