mirror of
https://github.com/vitalygashkov/crextractor.git
synced 2026-07-15 17:40:03 +02:00
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "crextractor",
|
|
"version": "1.2.0",
|
|
"description": "Utility for extracting credentials from the Crunchyroll Android app",
|
|
"main": "crextractor.js",
|
|
"bin": {
|
|
"crextractor": "bin/cli.js"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"crextractor.d.ts",
|
|
"crextractor.js"
|
|
],
|
|
"types": "crextractor.d.ts",
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"start": "node bin/cli.js",
|
|
"extract:mobile": "node bin/cli.js --target mobile --output ./credentials.mobile.json",
|
|
"extract:tv": "node bin/cli.js --target tv --output ./credentials.tv.json",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"crunchyroll"
|
|
],
|
|
"author": "Vitaly Gashkov <vitalygashkov@vk.com>",
|
|
"license": "MIT",
|
|
"readmeFilename": "README.md",
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://t.me/tribute/app?startapp=dqW2"
|
|
}
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"dependencies": {
|
|
"molnia": "^0.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|