Files
crextractor/package.json
T

60 lines
1.4 KiB
JSON

{
"name": "crextractor",
"version": "1.3.5",
"description": "Utility for extracting credentials from the Crunchyroll Android app",
"keywords": [
"crunchyroll"
],
"bugs": {
"url": "https://github.com/vitalygashkov/crextractor/issues",
"email": "vitalygashkov@vk.com"
},
"license": "MIT",
"author": "Vitaly Gashkov <vitalygashkov@vk.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/vitalygashkov/crextractor.git"
},
"funding": [
{
"type": "individual",
"url": "https://t.me/tribute/app?startapp=dqW2"
}
],
"bin": {
"crextractor": "bin/cli.js"
},
"files": [
"bin",
"crextractor.d.ts",
"crextractor.js"
],
"type": "module",
"main": "crextractor.js",
"types": "crextractor.d.ts",
"exports": {
".": {
"types": "./crextractor.d.ts",
"import": "./crextractor.js",
"require": "./crextractor.js"
}
},
"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"
},
"dependencies": {
"molnia": "^0.1.7"
},
"devDependencies": {
"oxfmt": "^0.28.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24"
},
"readmeFilename": "README.md"
}