Files
crextractor/package.json
T

60 lines
1.4 KiB
JSON
Raw Normal View History

2025-03-26 13:19:45 +05:00
{
2025-08-23 21:14:56 +05:00
"name": "crextractor",
2026-02-15 17:44:58 +05:00
"version": "1.4.0",
2025-08-23 23:49:51 +05:00
"description": "Utility for extracting credentials from the Crunchyroll Android app",
"keywords": [
"crunchyroll"
],
2026-02-08 14:15:00 +05:00
"bugs": {
2026-02-08 14:15:13 +05:00
"url": "https://github.com/vitalygashkov/crextractor/issues",
2026-02-08 14:15:00 +05:00
"email": "vitalygashkov@vk.com"
},
"license": "MIT",
"author": "Vitaly Gashkov <vitalygashkov@vk.com>",
2026-02-08 14:15:00 +05:00
"repository": {
"type": "git",
2026-02-08 14:15:13 +05:00
"url": "git+https://github.com/vitalygashkov/crextractor.git"
2026-02-08 14:15:00 +05:00
},
"funding": [
{
"type": "individual",
"url": "https://t.me/tribute/app?startapp=dqW2"
}
],
2025-08-23 21:14:56 +05:00
"bin": {
"crextractor": "bin/cli.js"
},
2025-08-23 21:27:17 +05:00
"files": [
"bin",
"crextractor.d.ts",
"crextractor.js"
],
2026-02-15 17:44:53 +05:00
"type": "module",
"main": "crextractor.js",
"types": "crextractor.d.ts",
2026-02-15 17:44:53 +05:00
"exports": {
".": {
"types": "./crextractor.d.ts",
"import": "./crextractor.js",
"require": "./crextractor.js"
}
},
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-08-23 21:14:56 +05:00
"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": {
2026-02-08 14:01:20 +05:00
"oxfmt": "^0.28.0",
"typescript": "^5.9.3"
},
"engines": {
2026-02-15 17:44:53 +05:00
"node": ">=24"
},
"readmeFilename": "README.md"
2025-03-26 13:19:45 +05:00
}