💬 Commit message: Update 2026-02-07 14:20:25, 8 files, 1060 lines

📁 Files changed: 8
📝 Lines changed: 1060

  • package-lock.json
  • package.json
  • browser.ts
  • cli.ts
  • image.ts
  • index.ts
  • mcp.ts
  • types.ts
This commit is contained in:
Adam Ladachowski
2026-02-07 14:20:25 +01:00
parent 4f0bec5f81
commit 67b6dc3a79
8 changed files with 1056 additions and 4 deletions
+19
View File
@@ -1,5 +1,18 @@
export { ClaudeBrowser } from './browser.js';
export { BrowserServer, startServer } from './server.js';
export {
createFavicon,
convert,
resize,
crop,
compress,
thumbnail,
type FaviconResult,
type ImageResult,
type FitType,
type FormatType,
type ThumbnailSize,
} from './image.js';
export type {
BrowserOptions,
BrowserCommand,
@@ -21,5 +34,11 @@ export type {
NewPageCommand,
CloseCommand,
EvalCommand,
FaviconCommand,
ConvertCommand,
ResizeCommand,
CropCommand,
CompressCommand,
ThumbnailCommand,
} from './types.js';
export type { ServerOptions } from './server.js';