-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.67 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "cuimp",
"version": "2.0.2",
"description": "Node wrapper for curl-impersonate (lexiforest) via CLI - Enhanced with raw buffer support and extra curl args",
"keywords": [
"cuimp",
"curl-impersonate",
"http-client",
"browser-impersonation",
"web-scraping",
"anti-bot",
"curl",
"http-request",
"typescript",
"proxy",
"fetch-alternative",
"axios-alternative",
"bot-detection",
"fingerprinting",
"http",
"https",
"request",
"scraping",
"automation"
],
"license": "MIT",
"author": "F4RAN <f4ran@vitalize.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/F4RAN/cuimp-ts.git"
},
"engines": {
"node": ">=18.17"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"tsconfig.json"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --external tar",
"prepare": "npm run build",
"test": "vitest test/basic.test.ts test/api.test.ts",
"test:run": "vitest run test/basic.test.ts test/api.test.ts",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest test/basic.test.ts test/api.test.ts --ui",
"test:all": "vitest run",
"test:mobile": "vitest run test/unit/mobilePlatforms.test.ts test/unit/descriptorNormalize.test.ts test/unit/downloadAssetName.test.ts",
"test:connector": "vitest run test/unit/connector.test.ts",
"test:ci:platforms": "vitest run test/unit/mobilePlatforms.test.ts test/unit/descriptorNormalize.test.ts test/unit/downloadAssetName.test.ts test/unit/connector.test.ts",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"*.{json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"*.{json,md}\"",
"typecheck": "tsc --noEmit",
"smoke": "node --input-type=module -e \"import('./dist/index.js').then(m=>m.__smoke && m.__smoke())\""
},
"devDependencies": {
"@types/node": "^22.7.5",
"@types/tar": "^6.1.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.8",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.8"
},
"dependencies": {
"tar": "7.4.3"
},
"overrides": {
"minizlib": "^3.1.0"
}
}