Files
MangaReader/backend/node_modules/puppeteer/lib/esm/puppeteer/node/cli.js
renato97 b474182dd9 Initial commit: MangaReader iOS App
 Features:
- App iOS completa para leer manga sin publicidad
- Scraper con WKWebView para manhwaweb.com
- Sistema de descargas offline
- Lector con zoom y navegación
- Favoritos y progreso de lectura
- Compatible con iOS 15+ y Sideloadly/3uTools

📦 Contenido:
- Backend Node.js con Puppeteer (opcional)
- App iOS con SwiftUI
- Scraper de capítulos e imágenes
- Sistema de almacenamiento local
- Testing completo
- Documentación exhaustiva

🧪 Prueba: Capítulo 789 de One Piece descargado exitosamente
  - 21 páginas descargadas
  - 4.68 MB total
  - URLs verificadas y funcionales

🎉 Generated with Claude Code (https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-02-04 15:34:18 +01:00

46 lines
1.6 KiB
JavaScript
Executable File

#!/usr/bin/env node
/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import { CLI, Browser } from '@puppeteer/browsers';
import { PUPPETEER_REVISIONS } from 'puppeteer-core/internal/revisions.js';
import { packageVersion } from 'puppeteer-core/internal/util/version.js';
import puppeteer from '../puppeteer.js';
const cacheDir = puppeteer.configuration
.cacheDirectory;
void new CLI({
cachePath: cacheDir,
scriptName: 'puppeteer',
version: packageVersion,
prefixCommand: {
cmd: 'browsers',
description: 'Manage browsers of this Puppeteer installation',
},
allowCachePathOverride: false,
pinnedBrowsers: {
[Browser.CHROME]: {
buildId: puppeteer.configuration.chrome?.version ||
PUPPETEER_REVISIONS['chrome'] ||
'latest',
skipDownload: puppeteer.configuration.chrome
?.skipDownload ?? false,
},
[Browser.FIREFOX]: {
buildId: puppeteer.configuration.firefox
?.version ||
PUPPETEER_REVISIONS['firefox'] ||
'latest',
skipDownload: puppeteer.configuration.firefox
?.skipDownload ?? true,
},
[Browser.CHROMEHEADLESSSHELL]: {
buildId: puppeteer.configuration['chrome-headless-shell']?.version ||
PUPPETEER_REVISIONS['chrome-headless-shell'] ||
'latest',
skipDownload: puppeteer.configuration['chrome-headless-shell']?.skipDownload ?? false,
},
},
}).run(process.argv);
//# sourceMappingURL=cli.js.map