-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "zenrows",
"version": "2.0.2",
"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",
"msw": "^2.13.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
},
"dependencies": {
"fastq": "^1.20.1",
"fetch-retry": "^6.0.0"
}
}