mirror of
https://github.com/FreeTubeApp/FreeTube
synced 2024-11-05 02:01:59 +01:00
d7c2540e3c
Bumps [stylelint-high-performance-animation](https://github.com/kristerkari/stylelint-high-performance-animation) from 1.8.0 to 1.9.0. - [Release notes](https://github.com/kristerkari/stylelint-high-performance-animation/releases) - [Changelog](https://github.com/kristerkari/stylelint-high-performance-animation/blob/master/CHANGELOG.md) - [Commits](https://github.com/kristerkari/stylelint-high-performance-animation/compare/v1.8.0...v1.9.0) --- updated-dependencies: - dependency-name: stylelint-high-performance-animation dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
133 lines
5.0 KiB
JSON
133 lines
5.0 KiB
JSON
{
|
|
"name": "freetube",
|
|
"productName": "FreeTube",
|
|
"description": "A private YouTube client",
|
|
"version": "0.18.0",
|
|
"license": "AGPL-3.0-or-later",
|
|
"main": "./dist/main.js",
|
|
"private": true,
|
|
"author": {
|
|
"name": "PrestonN",
|
|
"email": "FreeTubeApp@protonmail.com",
|
|
"url": "https://github.com/FreeTubeApp/FreeTube"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/FreeTubeApp/FreeTube.git"
|
|
},
|
|
"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",
|
|
"get-instances": "node _scripts/getInstances.js",
|
|
"get-regions": "node _scripts/getRegions.mjs",
|
|
"lint-all": "run-p lint lint-json lint-style",
|
|
"lint-fix": "eslint --fix --ext .js,.vue ./",
|
|
"lint": "eslint --ext .js,.vue ./",
|
|
"lint-json": "eslint --ext .json ./",
|
|
"lint-style": "run-p lint-style:scss lint-style:css",
|
|
"lint-style:scss": "stylelint \"**/*.scss\"",
|
|
"lint-style:css": "stylelint \"**/*.css\"",
|
|
"lint-style-fix:scss": "stylelint --fix \"**/*.scss\"",
|
|
"lint-style-fix:css": "stylelint --fix \"**/*.css\"",
|
|
"lint-yml": "eslint --ext .yml,.yaml ./",
|
|
"pack": "run-p pack:main pack:renderer",
|
|
"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",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
|
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
|
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
|
"@fortawesome/vue-fontawesome": "^2.0.10",
|
|
"@seald-io/nedb": "^4.0.2",
|
|
"@silvermine/videojs-quality-selector": "^1.3.0",
|
|
"autolinker": "^4.0.0",
|
|
"electron-context-menu": "^3.6.1",
|
|
"lodash.debounce": "^4.0.8",
|
|
"marked": "^7.0.0",
|
|
"path-browserify": "^1.0.1",
|
|
"process": "^0.11.10",
|
|
"video.js": "7.21.5",
|
|
"videojs-contrib-quality-levels": "^3.0.0",
|
|
"videojs-http-source-selector": "^1.1.6",
|
|
"videojs-mobile-ui": "^0.8.0",
|
|
"videojs-overlay": "^3.1.0",
|
|
"videojs-vtt-thumbnails-freetube": "0.0.15",
|
|
"vue": "^2.7.14",
|
|
"vue-i18n": "^8.28.2",
|
|
"vue-observe-visibility": "^1.0.0",
|
|
"vue-router": "^3.6.5",
|
|
"vue-tiny-slider": "^0.1.39",
|
|
"vuex": "^3.6.2",
|
|
"youtubei.js": "^5.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.9",
|
|
"@babel/eslint-parser": "^7.22.9",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/preset-env": "^7.22.9",
|
|
"@double-great/stylelint-a11y": "^2.0.2",
|
|
"babel-loader": "^9.1.3",
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"css-loader": "^6.8.1",
|
|
"css-minimizer-webpack-plugin": "^5.0.1",
|
|
"electron": "^22.3.18",
|
|
"electron-builder": "^24.6.3",
|
|
"eslint": "^8.47.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-plugin-import": "^2.28.0",
|
|
"eslint-plugin-jsonc": "^2.9.0",
|
|
"eslint-plugin-n": "^16.0.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-unicorn": "^48.0.1",
|
|
"eslint-plugin-vue": "^9.16.1",
|
|
"eslint-plugin-vuejs-accessibility": "^2.1.0",
|
|
"eslint-plugin-yml": "^1.8.0",
|
|
"html-webpack-plugin": "^5.5.3",
|
|
"js-yaml": "^4.1.0",
|
|
"json-minimizer-webpack-plugin": "^4.0.0",
|
|
"lefthook": "^1.4.8",
|
|
"mini-css-extract-plugin": "^2.7.6",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.4.26",
|
|
"postcss-scss": "^4.0.6",
|
|
"prettier": "^2.8.8",
|
|
"rimraf": "^5.0.1",
|
|
"sass": "^1.65.1",
|
|
"sass-loader": "^13.3.2",
|
|
"stylelint": "^15.10.2",
|
|
"stylelint-config-sass-guidelines": "^10.0.0",
|
|
"stylelint-config-standard": "^34.0.0",
|
|
"stylelint-high-performance-animation": "^1.9.0",
|
|
"tree-kill": "1.2.2",
|
|
"vue-devtools": "^5.1.4",
|
|
"vue-eslint-parser": "^9.3.1",
|
|
"vue-loader": "^15.10.0",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^4.15.1",
|
|
"yaml-eslint-parser": "^1.2.2"
|
|
}
|
|
}
|