UNPKG

bezier-mouse-js

Version:

Lightweight library to generate human-like mouse movements with Bézier curves.

77 lines (76 loc) 1.7 kB
{ "name": "bezier-mouse-js", "type": "module", "version": "2.0.1", "description": "Lightweight library to generate human-like mouse movements with Bézier curves.", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist" ], "scripts": { "build": "tsup", "test": "mocha", "prepublishOnly": "npm run build" }, "keywords": [ "automation", "bezier", "mouse", "bezier-curves", "mouse-emulation", "mouse-movement", "testing", "ui-testing", "human-like", "cursor" ], "author": "ChrisdeWolf", "license": "MIT", "bugs": { "url": "https://github.com/ChrisdeWolf/bezier-mouse-js/issues" }, "homepage": "https://github.com/ChrisdeWolf/bezier-mouse-js", "repository": { "type": "git", "url": "git+https://github.com/ChrisdeWolf/bezier-mouse-js.git" }, "dependencies": { "bezier-js": "^6.1.4" }, "peerDependencies": { "@nut-tree/nut-js": "^3.1.2" }, "peerDependenciesMeta": { "@nut-tree/nut-js": { "optional": true } }, "devDependencies": { "@nut-tree/nut-js": "^3.1.2", "@types/chai": "^4.3.0", "@types/mocha": "^10.0.0", "@types/sinon": "^10.0.0", "@types/sinon-chai": "^3.2.0", "chai": "^4.3.8", "mocha": "^10.6.0", "sinon": "^15.2.0", "sinon-chai": "^3.7.0", "tsup": "^8.0.0", "tsx": "^4.0.0", "typescript": "^5.0.0" } }