├── .gitignore ├── README.md ├── package.json ├── src ├── cursor.ts ├── example.ts ├── math.ts ├── mouse-helper.ts └── utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/package.json -------------------------------------------------------------------------------- /src/cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/src/cursor.ts -------------------------------------------------------------------------------- /src/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/src/example.ts -------------------------------------------------------------------------------- /src/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/src/math.ts -------------------------------------------------------------------------------- /src/mouse-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/src/mouse-helper.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reaz1995/ghost-cursor-playwright/HEAD/tsconfig.json --------------------------------------------------------------------------------