@epsilon-asi/actors 0.0.11 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epsilon-asi/actors",
3
- "version": "0.0.11",
3
+ "version": "0.0.14",
4
4
  "description": "A TypeScript Puppeteer actor framework using existing Chrome profiles and ghost-cursor.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,7 +23,7 @@
23
23
  "test:coverage": "vitest run --coverage",
24
24
  "check": "npm run typecheck && npm test",
25
25
  "bump": "../../scripts/bump_version.sh",
26
- "publish": "npm run bump && npm publish --access public",
26
+ "pub": "npm run bump && npm publish --access public",
27
27
  "clean": "rm -rf dist coverage"
28
28
  },
29
29
  "dependencies": {
@@ -4,7 +4,7 @@ import type { HumanTypingOptions } from '../interaction/HumanTyping.js';
4
4
 
5
5
  export type ChromeReleaseChannel = 'chrome' | 'chrome-beta' | 'chrome-dev' | 'chrome-canary';
6
6
 
7
- const DEFAULT_VIEWPORT = { width: 1080, height: 1920 };
7
+ const DEFAULT_VIEWPORT = { width: 2309, height: 1429 };
8
8
 
9
9
  export interface BrowserSessionBehavior {
10
10
  defaultViewport?: { width: number; height: number } | null;