forked from Xetera/ghost-cursor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.16 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
49
50
51
52
53
54
{
"name": "ghost-cursor",
"version": "1.1.13",
"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": "jest"
},
"keywords": [
"bezier-curve",
"mouse-movement",
"botting"
],
"author": "Xetera",
"license": "ISC",
"files": [
"lib/**/*"
],
"dependencies": {
"@types/bezier-js": "4",
"bezier-js": "^6"
},
"devDependencies": {
"@swc/core": "^1.2.194",
"@swc/jest": "^0.2.21",
"@types/jest": "28",
"husky": "8",
"jest": "^28.1.0",
"jest-puppeteer": "^6.1.0",
"puppeteer": "15",
"ts-standard": "11",
"typescript": "4"
},
"jest": {
"verbose": true,
"preset": "jest-puppeteer",
"modulePathIgnorePatterns": [
"./lib",
"./src/test.ts"
],
"reporters": [
"default",
"github-actions"
],
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
}
}