-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 812 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "ghost-cursor-playwright",
"version": "2.1.0",
"description": "Move your mouse like a human in playwright or generate realistic movements on any 2D plane",
"repository": "https://github.com/reaz1995/ghost-cursor-playwright",
"main": "lib/cursor.js",
"types": "lib/cursor.d.ts",
"keywords": [
"bezier-curve",
"mouse-movement",
"botting"
],
"author": "reaz",
"license": "MIT",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"example": "tsc && node ./lib/example.js"
},
"dependencies": {
"@types/trusted-types": "^2.0.7",
"bezier-js": "^4.1.1",
"playwright-core": "^1.19.2",
"trusted-types": "^2.0.0"
},
"devDependencies": {
"@types/bezier-js": "^4.1.0",
"@types/node": "^16.11.11",
"typescript": "^4.5.2"
}
}