forked from wearrrrr/curl-impersonate-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "ts-curl-impersonate",
"version": "1.0.1",
"description": "A typescript wrapper around cURL-impersonate.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:clean": "yarn clean && yarn build",
"clean": "rm -rf dist",
"lint": "eslint src/**",
"lint:fix": "yarn lint --fix",
"neat": "yarn lint:fix && yarn pretty",
"pretty": "prettier . --write",
"pretty:check": "prettier . --check",
"test": "jest",
"test:clean": "yarn clean && yarn build && yarn test"
},
"keywords": [
"web-scraping",
"tls-fingerprinting",
"curl-impersonate",
"typescript"
],
"author": "battlesquid",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.5.9",
"eslint": "^9.10.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "^8.6.0"
},
"volta": {
"node": "20.11.0",
"yarn": "1.22.22"
},
"files": [
"dist",
"bin"
]
}