-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.13 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.13 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@brightdata/sdk",
"version": "0.0.0",
"publishConfig": {
"access": "public"
},
"description": "JavaScript SDK for Bright Data Web Scraping and SERP APIs",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./scrapers": {
"types": "./dist/types/scrapers.d.ts",
"import": "./dist/esm/scrapers.mjs",
"require": "./dist/cjs/scrapers.cjs"
},
"./search": {
"types": "./dist/types/search.d.ts",
"import": "./dist/esm/search.mjs",
"require": "./dist/cjs/search.cjs"
},
"./datasets": {
"types": "./dist/types/datasets.d.ts",
"import": "./dist/esm/datasets.mjs",
"require": "./dist/cjs/datasets.cjs"
}
},
"typesVersions": {
"*": {
"scrapers": [
"./dist/types/scrapers.d.ts"
],
"search": [
"./dist/types/search.d.ts"
],
"datasets": [
"./dist/types/datasets.d.ts"
]
}
},
"scripts": {
"test": "vitest run",
"test:dev": "vitest watch",
"test:integration": "vitest run tests/integration/",
"probe:unlocker": "npx tsx probe_tests/web_unlocker.ts",
"probe:serp": "npx tsx probe_tests/serp.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier . --write",
"typecheck": "tsc --noEmit --project tsconfig.json",
"sanity": "npm run lint && npm run typecheck",
"build": "npm run build:clean && rollup -c && npm run build:dts",
"build:dts": "tsc --project tsconfig.dts.json",
"build:clean": "rm -rf ./dist",
"build:dev": "npm run build:clean && rollup --watch -c",
"build:dev:dts": "tsc --project tsconfig.dts.json --watch",
"prepublishOnly": "npm test && npm run sanity && npm run build",
"prepare": "husky"
},
"keywords": [
"brightdata",
"web scraping",
"proxy",
"serp",
"search",
"data extraction",
"web unlocker"
],
"author": "Bright Data <support@brightdata.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brightdata/sdk-js.git"
},
"bugs": {
"url": "https://github.com/brightdata/sdk-js/issues"
},
"homepage": "https://github.com/brightdata/sdk-js#readme",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@supercharge/promise-pool": "^3.2.0",
"undici": "^7.16.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.5.1",
"dotenv": "^17.2.3",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"rollup": "^4.52.4",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vitest": "^3.2.4"
},
"files": [
"dist/",
"README.md",
"package.json",
"LICENSE"
]
}