generated from Xetera/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
57 lines (57 loc) · 1.39 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
55
56
57
{
"name": "ghost-cursor",
"version": "1.3.0",
"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 && yarn lint && yarn build",
"build": "tsc -p tsconfig.build.json",
"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.1.3",
"debug": "^4.3.4"
},
"devDependencies": {
"@swc/core": "^1.2.194",
"@swc/jest": "^0.2.21",
"@types/debug": "^4.1.9",
"@types/jest": "29",
"husky": "9",
"jest": "29",
"jest-puppeteer": "10",
"puppeteer": "23",
"ts-standard": "12",
"typescript": "5"
},
"jest": {
"verbose": true,
"preset": "jest-puppeteer",
"modulePathIgnorePatterns": [
"./lib",
"./src/test.ts"
],
"reporters": [
"default",
"github-actions"
],
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}