forked from Xetera/ghost-cursor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 751 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 751 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",
"version": "1.1.8",
"description": "Move your mouse like a human in puppeteer or generate realistic movements on any 2D plane",
"repository": "https://github.com/Xetera/ghost-cursor",
"main": "lib/spoof.js",
"types": "lib/spoof.d.ts",
"scripts": {
"prepare": "husky install && yarn lint && yarn build",
"build": "tsc",
"lint": "yarn ts-standard --fix",
"test": "exit 0"
},
"keywords": [
"bezier-curve",
"mouse-movement",
"botting"
],
"author": "Xetera",
"license": "ISC",
"files": [
"lib/**/*"
],
"dependencies": {
"bezier-js": "^2.6.1"
},
"devDependencies": {
"husky": "7",
"puppeteer": "13",
"ts-standard": "11",
"typescript": "4"
}
}