forked from Xetera/ghost-cursor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 KB
/
package.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "ghost-cursor",
"version": "1.1.4",
"description": "Move your mouse like a human in puppeteer or generate realistic movements on any 2D plane",
"main": "lib/spoof.js",
"types": "lib/spoof.d.ts",
"scripts": {
"prepare": "yarn lint && yarn build",
"build": "tsc",
"lint": "yarn eslint --fix .",
"test": "exit 0"
},
"keywords": [
"bezier-curve",
"mouse-movement",
"botting"
],
"author": "Xetera",
"license": "ISC",
"files": [
"lib/**/*"
],
"dependencies": {
"bezier-js": "^2.6.1"
},
"devDependencies": {
"@types/puppeteer": "^5.4.3",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "7",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "5",
"husky": "4",
"typescript": "^4.0.5",
"yarnhook": "^0.5.1"
},
"husky": {
"hooks": {
"post-checkout": "yarnhook",
"post-merge": "yarnhook",
"post-rewrite": "yarnhook",
"pre-commit": "yarn lint"
}
}
}