Update dependencies

This commit is contained in:
AnimeDL 2023-07-15 15:09:06 -07:00
parent 11c32ba4bc
commit ea5ba76eba
3 changed files with 956 additions and 512 deletions

View file

@ -1,8 +1,8 @@
{
"name": "multi-downloader-nx",
"short_name": "aniDL",
"version": "4.3.0b1",
"description": "Download videos from Funimation, Crunchyroll, or Hidive via cli",
"version": "4.3.0b3",
"description": "Downloader for Crunchyroll, Funimation, or Hidive via CLI or GUI",
"keywords": [
"download",
"downloader",
@ -13,8 +13,13 @@
"crunchyroll",
"util",
"utility",
"cli"
"cli",
"gui"
],
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"author": "AnimeDL <AnimeDL@users.noreply.github.com>",
"contributors": [
{
@ -37,12 +42,12 @@
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-syntax-flow": "^7.21.4",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/core": "^7.22.9",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"cheerio": "1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv": "^16.3.1",
"eslint-plugin-import": "^2.27.5",
"express": "^4.18.2",
"form-data": "^4.0.0",
@ -56,27 +61,27 @@
"sei-helper": "^3.3.0",
"typescript-eslint": "0.0.1-alpha.0",
"ws": "^8.13.0",
"yaml": "^2.2.1",
"yargs": "^17.7.1"
"yaml": "^2.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.11",
"@types/ws": "^8.5.4",
"@types/ws": "^8.5.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"eslint": "^8.37.0",
"eslint": "^8.45.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "7.32.2",
"pkg": "^5.8.1",
"removeNPMAbsolutePaths": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "5.1.0-dev.20230227"
"typescript": "5.1.6"
},
"scripts": {
"prestart": "pnpm run tsc test",

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"target": "ES6",
"module": "commonjs",
"outDir": "./lib",
"strict": true,