-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "zenrows",
"version": "2.0.3",
"description": "ZenRows Node SDK",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.4.0",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm --clean",
"test": "vitest",
"format": "biome format --write .",
"check": "biome check ."
},
"keywords": [
"sdk",
"zenrows",
"scraping"
],
"author": "ZenRows",
"repository": {
"type": "git",
"url": "https://github.com/ZenRows/zenrows-node-sdk.git"
},
"homepage": "https://github.com/ZenRows/zenrows-node-sdk#readme",
"url": "https://github.com/ZenRows/zenrows-node-sdk/issues",
"type": "module",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@types/async-retry": "^1.4.9",
"@types/node": "^20.19.39",
"@vitest/coverage-v8": "1.6.1",
"msw": "^2.13.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^3.2.6"
},
"dependencies": {
"fastq": "^1.20.1",
"fetch-retry": "^6.0.0"
}
}