-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from vitalygashkov/next
Reworked CLI arguments, fixed video skipping, use any season if no language provided in Crunchyroll, added Crunchyroll multi-language episode download
- Loading branch information
Showing
11 changed files
with
1,874 additions
and
1,572 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "streamyx", | ||
"version": "3.8.7-beta.4", | ||
"version": "4.0.0-beta.1", | ||
"author": "Vitaly Gashkov <[email protected]>", | ||
"description": "Cross-platform video downloader", | ||
"main": "dist/src/main.js", | ||
|
@@ -9,37 +9,37 @@ | |
}, | ||
"scripts": { | ||
"postinstall": "tsc", | ||
"start": "tsc && node dist/src/main", | ||
"watch": "tsc --watch", | ||
"start": "tsc && node .", | ||
"build": "tsc && pkg . --public -t node20-win-x64,node20-macos-x64,node20-macos-arm64,node20-linux-x64 --out-path ./build/", | ||
"build:win": "tsc && pkg . --public -t node20-win-x64 -o ./build/win/streamyx.exe", | ||
"build:mac": "tsc && pkg . --public -t node20-macos-x64 -o ./build/mac/streamyx", | ||
"build:linux": "tsc && pkg . --public -t node20-linux-x64 -o ./build/linux/streamyx", | ||
"clean": "rimraf build/*", | ||
"lint": "eslint --ext .js,.ts .", | ||
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"" | ||
}, | ||
"dependencies": { | ||
"@streamyx/crunchyroll": "^0.0.4", | ||
"@streamyx/wink": "github:vitalygashkov/streamyx-wink", | ||
"@streamyx/crunchyroll": "file:packages/crunchyroll", | ||
"@streamyx/wink": "file:packages/wink", | ||
"@yao-pkg/pkg": "^5.11.5", | ||
"blowfish-node": "^1.1.4", | ||
"dasha": "github:vitalygashkov/dasha", | ||
"puppeteer-core": "^22.3.0", | ||
"dasha": "file:packages/dasha", | ||
"puppeteer-core": "^22.6.4", | ||
"puppeteer-extra": "^3.3.6", | ||
"puppeteer-extra-plugin-stealth": "^2.11.2", | ||
"undici": "^6.11.1", | ||
"undici": "^6.13.0", | ||
"wive": "file:packages/wive" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^18.16.1", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "^5.61.0", | ||
"@typescript-eslint/parser": "^5.61.0", | ||
"eslint": "^8.44.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"prettier": "^3.2.5", | ||
"typescript": "^5.3.3" | ||
"typescript": "^5.4.5" | ||
}, | ||
"engines": { | ||
"node": ">=20" | ||
|
Submodule crunchyroll
added at
efac47
Submodule wive
updated
from a5a93f to 8fb984
Submodule wivenative
updated
from 027807 to f031d9
Submodule src
updated
from 90cd9a to fa8ecb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters