forked from Battlesquid/ts-curl-impersonate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.41 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": "@pricething/curl",
"version": "1.1.4",
"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": "datagutt",
"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"
],
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}