💬 Commit message: Update 2026-02-06 20:28:30, 13 files, 1401 lines

📁 Files changed: 13
📝 Lines changed: 1401

  • .gitignore
  • CLAUDE.md
  • PLAN.md
  • README.md
  • TODO.md
  • package-lock.json
  • package.json
  • browser.ts
  • cli.ts
  • index.ts
  • server.ts
  • types.ts
  • tsconfig.json
This commit is contained in:
Adam Ladachowski
2026-02-06 20:28:30 +01:00
commit eccc03ee7a
13 changed files with 1401 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
export { ClaudeBrowser } from './browser.js';
export { BrowserServer, startServer } from './server.js';
export type {
BrowserOptions,
BrowserCommand,
CommandResponse,
ElementInfo,
SuccessResponse,
ErrorResponse,
GotoCommand,
ClickCommand,
TypeCommand,
QueryCommand,
ScreenshotCommand,
UrlCommand,
HtmlCommand,
BackCommand,
ForwardCommand,
ReloadCommand,
WaitCommand,
NewPageCommand,
CloseCommand,
EvalCommand,
} from './types.js';
export type { ServerOptions } from './server.js';