Files
crextractor/package.json
T

44 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2025-03-26 13:19:45 +05:00
{
2025-08-23 21:14:56 +05:00
"name": "crextractor",
2025-10-25 12:14:11 +05:00
"version": "1.3.3",
2025-08-23 23:49:51 +05:00
"description": "Utility for extracting credentials from the Crunchyroll Android app",
2025-08-23 21:14:56 +05:00
"main": "crextractor.js",
"bin": {
"crextractor": "bin/cli.js"
},
2025-08-23 21:27:17 +05:00
"files": [
"bin",
"crextractor.d.ts",
"crextractor.js"
],
2025-08-23 21:14:56 +05:00
"types": "crextractor.d.ts",
"type": "commonjs",
2025-03-26 13:19:45 +05:00
"scripts": {
2025-08-23 21:19:29 +05:00
"start": "node bin/cli.js",
2025-08-24 10:26:19 +05:00
"extract:mobile": "node bin/cli.js --target mobile --output ./credentials.mobile.json",
"extract:tv": "node bin/cli.js --target tv --output ./credentials.tv.json",
2025-03-26 13:19:45 +05:00
"test": "echo \"Error: no test specified\" && exit 1"
},
2025-03-27 18:27:49 +05:00
"keywords": [
"crunchyroll"
],
2025-03-26 13:19:45 +05:00
"author": "Vitaly Gashkov <vitalygashkov@vk.com>",
"license": "MIT",
2025-03-27 18:27:49 +05:00
"readmeFilename": "README.md",
"funding": [
{
"type": "individual",
2025-08-23 21:14:56 +05:00
"url": "https://t.me/tribute/app?startapp=dqW2"
2025-03-27 18:27:49 +05:00
}
],
"engines": {
2025-08-23 21:14:56 +05:00
"node": ">=20"
},
"dependencies": {
2025-10-25 12:09:12 +05:00
"molnia": "^0.1.7"
2025-03-27 18:27:49 +05:00
},
2025-03-26 13:19:45 +05:00
"devDependencies": {
2025-08-23 21:14:56 +05:00
"typescript": "^5.9.2"
2025-03-26 13:19:45 +05:00
}
}