-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@brightdata/amazon-scraper-node",
"version": "0.1.0",
"description": "Amazon scraper in JavaScript: products, reviews, sellers and search as JSON, on the Bright Data Amazon Scraper API (Web Scraper API). No login, no browser. 5,000 free credits a month.",
"private": true,
"type": "module",
"license": "MIT",
"engines": { "node": ">=20" },
"main": "src/index.js",
"exports": { ".": "./src/index.js" },
"bin": { "amazon-scraper": "src/cli.js" },
"files": ["src"],
"scripts": {
"test": "node --test tests/",
"lint": "oxlint src tests"
},
"dependencies": { "@brightdata/sdk": "^1.2.0" },
"devDependencies": { "oxlint": "^1.83.0" },
"repository": { "type": "git", "url": "git+https://github.com/brightdata/amazon-scraper-node.git" },
"bugs": { "url": "https://github.com/brightdata/amazon-scraper-node/issues" },
"homepage": "https://github.com/brightdata/amazon-scraper-node#readme"
}